Finegrainify namespacification
[oota-llvm.git] / lib / Support / LeakDetector.cpp
index ffb081a998201e696db07fe1ef726faa8e757d6b..f0cb6cc1c59cc43abbd99817e74c950212c52e79 100644 (file)
@@ -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