[Orxonox-commit 5094] r9759 - code/trunk/src/libraries/core
landauf at orxonox.net
landauf at orxonox.net
Sun Nov 10 18:30:41 CET 2013
Author: landauf
Date: 2013-11-10 18:30:41 +0100 (Sun, 10 Nov 2013)
New Revision: 9759
Modified:
code/trunk/src/libraries/core/GUIManager.cc
Log:
fixed warning (msvc)
Modified: code/trunk/src/libraries/core/GUIManager.cc
===================================================================
--- code/trunk/src/libraries/core/GUIManager.cc 2013-11-08 11:19:17 UTC (rev 9758)
+++ code/trunk/src/libraries/core/GUIManager.cc 2013-11-10 17:30:41 UTC (rev 9759)
@@ -349,7 +349,7 @@
// Force Xerces parser (CEGUI 0.7.5+)
CEGUI::System::getSingleton().setXMLParser("XercesParser");
}
- catch (const CEGUI::GenericException& e)
+ catch (const CEGUI::GenericException&)
{
// Fall back to default parser
orxout(internal_warning) << "Cannot use XercesParser for CEGUI - using " << defaultXMLParserName << " instead" << endl;
More information about the Orxonox-commit
mailing list