summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/LoggerUtil.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/Ice/LoggerUtil.h')
-rw-r--r--cpp/include/Ice/LoggerUtil.h6
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>