mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 19:51:58 +01:00
fix XP/VS2003 tests
This commit is contained in:
@@ -230,8 +230,11 @@ void NumberParserTest::testLimits()
|
||||
|
||||
void NumberParserTest::testParseError()
|
||||
{
|
||||
const char dp = decimalSeparator();
|
||||
const char ts = thousandSeparator();
|
||||
char dp = decimalSeparator();
|
||||
if (dp == 0) dp = '.';
|
||||
char ts = thousandSeparator();
|
||||
if (ts == 0) ts = ',';
|
||||
assert (dp != ts);
|
||||
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user