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

@ -1874,7 +1874,7 @@ bool ISO8601p::parse (const std::string& input, std::string::size_type& start)
Lexer::isSingleCharOperator (n.next ()))
{
start = original_start + n.cursor ();
double quantity = std::stod (number);
double quantity = strtod (number.c_str (), NULL);
// Linear lookup - should instead be logarithmic.
double seconds = 1;