mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +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;
|
||||
if (getNumber (s))
|
||||
{
|
||||
result = std::stod (s);
|
||||
result = strtof (s.c_str (), NULL);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue