summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/Debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/Debug.h b/include/llvm/Support/Debug.h
index 6c7590ebe1..cbfaf1574c 100644
--- a/include/llvm/Support/Debug.h
+++ b/include/llvm/Support/Debug.h
@@ -68,9 +68,9 @@ bool isCurrentDebugType(const char *Type);
OStream &getErrorOutputStream(const char *DebugType);
#ifdef NDEBUG
-#define DOUT OStream(0)
+#define DOUT llvm::OStream(0)
#else
-#define DOUT getErrorOutputStream(DEBUG_TYPE)
+#define DOUT llvm::getErrorOutputStream(DEBUG_TYPE)
#endif
} // End llvm namespace