Skip to content
Snippets Groups Projects

Fix compilation error when using cta::common::Configuration::getConfEntInt

All threads resolved!
Files
2
+ 1
2
@@ -143,8 +143,7 @@ namespace cta { namespace common {
}
if (!utils::isValidUInt(strValue.c_str())) {
InvalidConfigEntry ex(category.c_str(),
key.c_str(), strValue.c_str());
InvalidConfigEntry ex;
ex.getMessage() << "Failed to get configuration entry " << category <<
":" << key << ": Value is not a valid unsigned integer: value=" <<
strValue;
Loading