[Orxonox-commit 4900] r9569 - code/branches/core6/src/libraries/core/config
landauf at orxonox.net
landauf at orxonox.net
Sun Mar 24 19:31:22 CET 2013
Author: landauf
Date: 2013-03-24 19:31:22 +0100 (Sun, 24 Mar 2013)
New Revision: 9569
Modified:
code/branches/core6/src/libraries/core/config/SettingsConfigFile.cc
Log:
I guess 'void' makes more sense here
Modified: code/branches/core6/src/libraries/core/config/SettingsConfigFile.cc
===================================================================
--- code/branches/core6/src/libraries/core/config/SettingsConfigFile.cc 2013-03-24 18:26:46 UTC (rev 9568)
+++ code/branches/core6/src/libraries/core/config/SettingsConfigFile.cc 2013-03-24 18:31:22 UTC (rev 9569)
@@ -268,7 +268,7 @@
if (it->second.first == entryLC && ! it->second.second->isVector())
{
std::string value;
- it->second.second->getValue<std::string, OrxonoxClass>(&value, NULL);
+ it->second.second->getValue<std::string, void>(&value, NULL);
return value;
}
}
More information about the Orxonox-commit
mailing list