summaryrefslogtreecommitdiff
path: root/src/util/output.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/output.h')
-rw-r--r--src/util/output.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/output.h b/src/util/output.h
index 0b1c86afd..d3eb3a831 100644
--- a/src/util/output.h
+++ b/src/util/output.h
@@ -273,7 +273,7 @@ public:
/** The debug output singleton */
extern DebugC DebugChannel CVC4_PUBLIC;
#ifdef CVC4_DEBUG
-# define Debug DebugChannel
+# define Debug CVC4::DebugChannel
#else /* CVC4_DEBUG */
# define Debug CVC4::__cvc4_true() ? CVC4::debugNullCvc4Stream : CVC4::DebugChannel
#endif /* CVC4_DEBUG */
@@ -290,7 +290,7 @@ extern ChatC Chat CVC4_PUBLIC;
/** The trace output singleton */
extern TraceC TraceChannel CVC4_PUBLIC;
#ifdef CVC4_TRACING
-# define Trace TraceChannel
+# define Trace CVC4::TraceChannel
#else /* CVC4_TRACING */
# define Trace CVC4::__cvc4_true() ? CVC4::debugNullCvc4Stream : CVC4::TraceChannel
#endif /* CVC4_TRACING */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback