Nibbler: Reverted std::stoi change
This commit is contained in:
@@ -434,7 +434,7 @@ bool Nibbler::getNumber (double &result)
|
|||||||
std::string s;
|
std::string s;
|
||||||
if (getNumber (s))
|
if (getNumber (s))
|
||||||
{
|
{
|
||||||
result = std::stod (s);
|
result = strtof (s.c_str (), NULL);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user