diff options
author | Monty Brandenberg <monty@lindenlab.com> | 2011-04-12 18:11:28 -0400 |
---|---|---|
committer | Monty Brandenberg <monty@lindenlab.com> | 2011-04-12 18:11:28 -0400 |
commit | 2399b2fca12d916d4de17db45c3a34a6678453d8 (patch) | |
tree | a2c9db76361f3604d5d69f359b082fa6b29981ef /indra | |
parent | fa1827fa32f5dc046b17cde1ddbac8316f061793 (diff) |
Fix gcc 4.2 warning about incomplete case coverage in switch
statement for plugin events. This becomes an error in the build
so I'm adding a default: case to cover the enumeration.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/test_apps/llplugintest/llmediaplugintest.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/indra/test_apps/llplugintest/llmediaplugintest.cpp b/indra/test_apps/llplugintest/llmediaplugintest.cpp index e9d4d99753..7164934b26 100644 --- a/indra/test_apps/llplugintest/llmediaplugintest.cpp +++ b/indra/test_apps/llplugintest/llmediaplugintest.cpp @@ -4,7 +4,7 @@ * * $LicenseInfo:firstyear=2008&license=viewerlgpl$ * Second Life Viewer Source Code - * Copyright (C) 2010, Linden Research, Inc. + * Copyright (C) 2011, Linden Research, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -2233,7 +2233,13 @@ void LLMediaPluginTest::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent e case MEDIA_EVENT_LINK_HOVERED: { std::cerr << "Media event: MEDIA_EVENT_LINK_HOVERED, hover text is: " << self->getHoverText() << std::endl; - }; + } + break; + + default: + { + std::cerr << "Media event: <unknown>, code is: " << int(event) << std::endl; + } break; } } |