From d1dee3c9092b7c270b297366757c9fc8d03bb0dd Mon Sep 17 00:00:00 2001 From: Mattes D Date: Tue, 2 Aug 2016 13:12:34 +0200 Subject: Fixed RasPi builds of unit tests. On RasPi with gcc 4.8.2, the asserts wouldn't compile when tests were enabled. Enforced the assumption that ASSERT code is generated only in Debug builds. --- src/CompositeChat.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/CompositeChat.cpp') diff --git a/src/CompositeChat.cpp b/src/CompositeChat.cpp index d110d5908..2a112f810 100644 --- a/src/CompositeChat.cpp +++ b/src/CompositeChat.cpp @@ -284,7 +284,9 @@ cLogger::eLogLevel cCompositeChat::MessageTypeToLogLevel(eMessageType a_MessageT case mtLeave: return cLogger::llRegular; } ASSERT(!"Unhandled MessageType"); - return cLogger::llError; + #ifndef __clang__ + return cLogger::llError; + #endif } -- cgit v1.2.3