diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:01:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:27 +0100 |
commit | 99e7071f2e35d87641274552d708bd521f50b0f6 (patch) | |
tree | f280d39275ddb2cfdd07a5f1e40feb585e17235e /helpcompiler | |
parent | a54fd6ae34b195dde26c4dcc11963b5525ed9889 (diff) |
bool improvements
Change-Id: I510d75d784c357dfd3420202fc8c5769e665e456
Diffstat (limited to 'helpcompiler')
-rw-r--r-- | helpcompiler/inc/HelpCompiler.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpcompiler/inc/HelpCompiler.hxx b/helpcompiler/inc/HelpCompiler.hxx index b1e7ab85fc41..e4688b537a54 100644 --- a/helpcompiler/inc/HelpCompiler.hxx +++ b/helpcompiler/inc/HelpCompiler.hxx @@ -52,9 +52,9 @@ #if OSL_DEBUG_LEVEL > 2 #include <iostream> - #define HCDBG(foo) do { if (1) foo; } while(0) + #define HCDBG(foo) do { if (true) foo; } while(false) #else - #define HCDBG(foo) do { } while(0) + #define HCDBG(foo) do { } while(false) #endif namespace fs |