diff options
author | Chris Lattner <sabre@nondot.org> | 2003-02-01 04:01:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-02-01 04:01:21 +0000 |
commit | b3416bc9ccd9d7f379d14238bae297a9613999cf (patch) | |
tree | be8a579e2a3e7c724bdcc7935256ff69a478a5a9 /lib/Analysis/DataStructure/BottomUpClosure.cpp | |
parent | 36e50ff3e48e9646d21aaf7a9204448deba403fa (diff) |
Remove using declarations
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5456 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/BottomUpClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/BottomUpClosure.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index ef3bf387ef..26b7813482 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -11,7 +11,6 @@ #include "llvm/Analysis/DSGraph.h" #include "llvm/Module.h" #include "Support/Statistic.h" -using std::map; namespace { Statistic<> MaxSCC("budatastructure", "Maximum SCC Size in Call Graph"); @@ -284,7 +283,7 @@ unsigned BUDataStructures::calculateGraphs(Function *F, // our memory... here... // void BUDataStructures::releaseMemory() { - for (map<const Function*, DSGraph*>::iterator I = DSInfo.begin(), + for (std::map<const Function*, DSGraph*>::iterator I = DSInfo.begin(), E = DSInfo.end(); I != E; ++I) delete I->second; |