mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
fixed test compile on Mac/clang
This commit is contained in:
parent
8fe3a398af
commit
6fa1270163
@ -950,7 +950,7 @@ void StringTest::testIntToString()
|
||||
try
|
||||
{
|
||||
char pResult[POCO_MAX_INT_STRING_LEN];
|
||||
unsigned sz = POCO_MAX_INT_STRING_LEN;
|
||||
std::size_t sz = POCO_MAX_INT_STRING_LEN;
|
||||
intToStr(0, 10, pResult, sz, false, sz + 1, ' ');
|
||||
fail ("must throw RangeException");
|
||||
} catch (RangeException&) { }
|
||||
|
Loading…
Reference in New Issue
Block a user