essage=disable char and short tests on Mac (annoying warnings)

This commit is contained in:
Aleksandar Fabijanic 2012-10-13 04:46:00 +00:00
parent af30814d13
commit 4773c203a4

View File

@ -362,10 +362,13 @@ void StringTest::testCat()
void StringTest::testStringToInt()
{
//gcc on Mac emits warnings that cannot be suppressed
#ifndef POCO_OS_FAMILY_BSD
stringToInt<Poco::Int8>();
stringToInt<Poco::UInt8>();
stringToInt<Poco::Int16>();
stringToInt<Poco::UInt16>();
#endif
stringToInt<Poco::Int32>();
stringToInt<Poco::UInt32>();
#if defined(POCO_HAVE_INT64)