summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-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 b205d1d37..0b1c86afd 100644
--- a/src/util/output.h
+++ b/src/util/output.h
@@ -275,7 +275,7 @@ extern DebugC DebugChannel CVC4_PUBLIC;
#ifdef CVC4_DEBUG
# define Debug DebugChannel
#else /* CVC4_DEBUG */
-# define Debug __cvc4_true() ? debugNullCvc4Stream : DebugChannel
+# define Debug CVC4::__cvc4_true() ? CVC4::debugNullCvc4Stream : CVC4::DebugChannel
#endif /* CVC4_DEBUG */
/** The warning output singleton */
@@ -292,7 +292,7 @@ extern TraceC TraceChannel CVC4_PUBLIC;
#ifdef CVC4_TRACING
# define Trace TraceChannel
#else /* CVC4_TRACING */
-# define Trace __cvc4_true() ? debugNullCvc4Stream : TraceChannel
+# define Trace CVC4::__cvc4_true() ? CVC4::debugNullCvc4Stream : CVC4::TraceChannel
#endif /* CVC4_TRACING */
// Disallow e.g. !Debug("foo").isOn() forms
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback