Nibbler: Reverted std::stoi change

This commit is contained in:
Paul Beckingham 2015-11-02 18:37:50 -05:00
parent 508559f766
commit 284330ea1d

View file

@ -434,7 +434,7 @@ bool Nibbler::getNumber (double &result)
std::string s;
if (getNumber (s))
{
result = std::stod (s);
result = strtof (s.c_str (), NULL);
return true;
}