From 4082b369d7ae6160df2e23233713587a0c5d9a87 Mon Sep 17 00:00:00 2001 From: Denes Matetelki Date: Sun, 27 Feb 2011 01:03:19 +0100 Subject: [PATCH] #else branch was missing --- include/Common.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/Common.hpp b/include/Common.hpp index 28cc55d..aaa28df 100644 --- a/include/Common.hpp +++ b/include/Common.hpp @@ -3,4 +3,6 @@ #ifndef NOTRACE #define TRACE(x) std::cout << x << " " << __PRETTY_FUNCTION__ << \ " @ " << __FILE__ << " : " << __LINE__ << std::endl +#else + #define TRACE(x) "" #endif \ No newline at end of file