Include raw_ostream.h unconditionally even if it is only used for debug code.
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Fri, 19 Nov 2010 18:51:46 +0000 (18:51 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Fri, 19 Nov 2010 18:51:46 +0000 (18:51 +0000)
We don't want any clients acidentally depending on this and then failing in a
-Asserts build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119818 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/IntervalMap.h

index 8606a178b7b7ec90c6822cddac7da5c1ab7fcf50..896b5096da563d1718375160d94fe0511b7af9e1 100644 (file)
 #include <limits>
 #include <iterator>
 
-// FIXME: Remove debugging code
-#ifndef NDEBUG
+// FIXME: Remove debugging code.
 #include "llvm/Support/raw_ostream.h"
-#endif
 
 namespace llvm {