summaryrefslogtreecommitdiff
path: root/libs/audiographer/audiographer/debuggable.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/audiographer/audiographer/debuggable.h')
-rw-r--r--libs/audiographer/audiographer/debuggable.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/audiographer/audiographer/debuggable.h b/libs/audiographer/audiographer/debuggable.h
index 8fe48159de..1cc1d6f725 100644
--- a/libs/audiographer/audiographer/debuggable.h
+++ b/libs/audiographer/audiographer/debuggable.h
@@ -45,12 +45,12 @@ class /*LIBAUDIOGRAPHER_API*/ Debuggable
: stream (debug_stream) {}
bool debug_level (DebugLevel level) {
- #ifdef NDEBUG
- level = DEFAULT_DEBUG_LEVEL; /* stop pedantic gcc complaints about unused parameter */
+#ifndef NDEBUG
+ (void) level; /* stop pedantic gcc complaints about unused parameter */
return false;
- #else
+#else
return L >= level;
- #endif
+#endif
}
std::ostream & debug_stream() { return stream; }