mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-26 15:47:19 +02:00
Nibbler: Reverted std::stoi change
This commit is contained in:
parent
508559f766
commit
284330ea1d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue