diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 69a390c63146385a8c5215d10963fffe67f2b02a..b680be5983b3c009f2abeb5644bd8613c5d4f78e 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -6,6 +6,7 @@ - cta/CTA#230 - Modify CTA code to enforce VID uppercase ### Bug Fixes - cta/CTA#234 - Replace stoi with toUint64 in standalone cli tool +- cta/CTA#238 - Compilation fails when using cta::common::Configuration::getConfEntInt(...) ### Continuous Integration - cta/CTA#205 - Updating EOS4/EOS4 in versionlock for v4.8.95/v5.1.5 diff --git a/common/Configuration.hpp b/common/Configuration.hpp index f60cc990c83f84cbe54fa3cee1c58a4484ac1ddb..37b5866872650d6023075fa14b72fd81e1d060f4 100644 --- a/common/Configuration.hpp +++ b/common/Configuration.hpp @@ -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;