Allow DOUT to be used outside of the llvm namespace.

llvm-svn: 37753
This commit is contained in:
Dan Gohman 2007-06-27 14:09:38 +00:00
parent f4e86da3a6
commit cab6dd8ef2
1 changed files with 2 additions and 2 deletions

View File

@ -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