diff options
Diffstat (limited to 'lib/Support/LeakDetector.cpp')
-rw-r--r-- | lib/Support/LeakDetector.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Support/LeakDetector.cpp b/lib/Support/LeakDetector.cpp index ffb081a..f0cb6cc 100644 --- a/lib/Support/LeakDetector.cpp +++ b/lib/Support/LeakDetector.cpp @@ -14,8 +14,7 @@ #include "Support/LeakDetector.h" #include "llvm/Value.h" #include <set> - -namespace llvm { +using namespace llvm; // Lazily allocate set so that release build doesn't have to do anything. static std::set<const void*> *Objects = 0; @@ -89,5 +88,3 @@ void LeakDetector::checkForGarbageImpl(const std::string &Message) { Objects = 0; LLVMObjects = 0; } } - -} // End llvm namespace |