diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-11-18 16:24:02 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-11-18 16:24:02 +0100 |
commit | dfef9c7cf9ee1d205aaa76cb2c018741a0a40bd8 (patch) | |
tree | c28c09f01b858ef1a6fcdfa1e98e57386c89a682 /cpp/include/Ice/LoggerUtil.h | |
parent | Fixed some comments in gradle.properties (diff) | |
download | ice-dfef9c7cf9ee1d205aaa76cb2c018741a0a40bd8.tar.bz2 ice-dfef9c7cf9ee1d205aaa76cb2c018741a0a40bd8.tar.xz ice-dfef9c7cf9ee1d205aaa76cb2c018741a0a40bd8.zip |
Fixes for ICE-5910: merged makecerts.py with makewinrtcerts.py, removed WinRT certs
Diffstat (limited to 'cpp/include/Ice/LoggerUtil.h')
-rw-r--r-- | cpp/include/Ice/LoggerUtil.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/include/Ice/LoggerUtil.h b/cpp/include/Ice/LoggerUtil.h index 1414bb37f03..5133c4404b6 100644 --- a/cpp/include/Ice/LoggerUtil.h +++ b/cpp/include/Ice/LoggerUtil.h @@ -36,10 +36,10 @@ ICE_API LoggerOutputBase& loggerInsert(LoggerOutputBase& out, const IceUtil::Exc template<typename T> struct IsException { - static char test(IceUtil::Exception*); - static long test(...); + static char testex(IceUtil::Exception*); + static long testex(...); - static const bool value = sizeof(test(static_cast<T*>(0))) == sizeof(char); + static const bool value = sizeof(testex(static_cast<T*>(0))) == sizeof(char); }; template<typename T, bool = false> |