Revert "C++11: Migrated from strtod to std::stod"

This reverts commit db49efd72f.
This commit is contained in:
Paul Beckingham 2015-11-02 18:44:29 -05:00
parent ee40f89804
commit b4b41215a2
4 changed files with 5 additions and 6 deletions

View file

@ -578,7 +578,7 @@ double Config::getReal (const std::string& key)
return getReal("urgency.next.coefficient");
if ((*this).find (key) != (*this).end ())
return std::stod ((*this)[key]);
return strtod ((*this)[key].c_str (), NULL);
return 0.0;
}