Fine grainify namespacification
authorChris Lattner <sabre@nondot.org>
Sun, 9 May 2004 06:22:29 +0000 (06:22 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 9 May 2004 06:22:29 +0000 (06:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13436 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/IPA/FindUsedTypes.cpp

index 870f5716a367498452936711ef64f746af1a8271..15208f60db6449585f6f207850cf9ea0a4a9270b 100644 (file)
@@ -20,8 +20,7 @@
 #include "llvm/SymbolTable.h"
 #include "llvm/Assembly/CachedWriter.h"
 #include "llvm/Support/InstIterator.h"
-
-namespace llvm {
+using namespace llvm;
 
 static RegisterAnalysis<FindUsedTypes>
 X("printusedtypes", "Find Used Types");
@@ -108,5 +107,3 @@ void FindUsedTypes::print(std::ostream &o, const Module *M) const {
            E = UsedTypes.end(); I != E; ++I)
       o << "  " << *I << "\n";
 }
-
-} // End llvm namespace