fix for tests that got broken with Int64 introduction

This commit is contained in:
Aleksandar Fabijanic
2012-06-17 21:39:26 +00:00
parent 771d5ed0b0
commit 378077f209
3 changed files with 10 additions and 6 deletions

View File

@@ -180,7 +180,9 @@ Int64 AbstractConfiguration::getInt64(const std::string& key, Int64 defaultValue
std::string value;
if (getRaw(key, value))
return NumberParser::tryParse64(internalExpand(value), defaultValue);
return NumberParser::parse64(internalExpand(value));
else
return defaultValue;
}
#endif // defined(POCO_HAVE_INT64)