forked from organicmaps/organicmaps
Fixed bug when strings::to_double(“”, d) incorrectly returned true.
This commit is contained in:
parent
966e2141ed
commit
a4ec86c8ae
2 changed files with 7 additions and 1 deletions
|
@ -137,6 +137,9 @@ UNIT_TEST(to_double)
|
|||
string s;
|
||||
double d;
|
||||
|
||||
s = "";
|
||||
TEST(!strings::to_double(s, d), ());
|
||||
|
||||
s = "0.123";
|
||||
TEST(strings::to_double(s, d), ());
|
||||
TEST_ALMOST_EQUAL_ULPS(0.123, d, ());
|
||||
|
@ -159,6 +162,9 @@ UNIT_TEST(to_double)
|
|||
|
||||
s = "labuda";
|
||||
TEST(!strings::to_double(s, d), ());
|
||||
|
||||
s = "123.456 we don't parse it.";
|
||||
TEST(!strings::to_double(s, d), ());
|
||||
}
|
||||
|
||||
UNIT_TEST(to_int)
|
||||
|
|
|
@ -81,7 +81,7 @@ bool to_double(char const * s, double & d)
|
|||
{
|
||||
char * stop;
|
||||
d = strtod(s, &stop);
|
||||
return stop && *stop == 0;
|
||||
return stop && *stop == 0 && s != stop;
|
||||
}
|
||||
|
||||
UniString MakeLowerCase(UniString const & s)
|
||||
|
|
Loading…
Add table
Reference in a new issue