diff --git a/dune/common/configparser.cc b/dune/common/configparser.cc index 1cd051815410458c624579e7d937914315a4a228..bb6b7b2b4bbb4ef35772042b264fd3a6af747073 100644 --- a/dune/common/configparser.cc +++ b/dune/common/configparser.cc @@ -231,11 +231,10 @@ int ConfigParser::get(const string& key, int defaultValue) double ConfigParser::get(const string& key, double defaultValue) { - stringstream stream; - stream << defaultValue; - string ret = get(key, stream.str()); - - return atof(ret.c_str()); + if(hasKey(key)) + return atof((*this)[key].c_str()); + else + return defaultValue; } bool ConfigParser::get(const string& key, bool defaultValue)