aboutsummaryrefslogtreecommitdiff
path: root/lib/StaticAnalyzer/Core/FlatStore.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-07-23 10:55:15 +0000
committerChris Lattner <sabre@nondot.org>2011-07-23 10:55:15 +0000
commit5f9e272e632e951b1efe824cd16acb4d96077930 (patch)
tree3268557d12b85d0c2e72de5329ec83d4fc0bca48 /lib/StaticAnalyzer/Core/FlatStore.cpp
parentd47d3b0cfeb7e8564ff77f48130fe63282b6d127 (diff)
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports
them into the clang namespace. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@135852 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/FlatStore.cpp')
-rw-r--r--lib/StaticAnalyzer/Core/FlatStore.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/StaticAnalyzer/Core/FlatStore.cpp b/lib/StaticAnalyzer/Core/FlatStore.cpp
index ca867aebde..b6515dab81 100644
--- a/lib/StaticAnalyzer/Core/FlatStore.cpp
+++ b/lib/StaticAnalyzer/Core/FlatStore.cpp
@@ -47,7 +47,7 @@ public:
SVal ArrayToPointer(Loc Array);
StoreRef removeDeadBindings(Store store, const StackFrameContext *LCtx,
SymbolReaper& SymReaper,
- llvm::SmallVectorImpl<const MemRegion*>& RegionRoots){
+ SmallVectorImpl<const MemRegion*>& RegionRoots){
return StoreRef(store, *this);
}
@@ -63,7 +63,7 @@ public:
bool invalidateGlobals,
InvalidatedRegions *Regions);
- void print(Store store, llvm::raw_ostream& Out, const char* nl,
+ void print(Store store, raw_ostream& Out, const char* nl,
const char *sep);
void iterBindings(Store store, BindingsHandler& f);
@@ -182,7 +182,7 @@ StoreRef FlatStoreManager::invalidateRegions(Store store,
return StoreRef(store, *this);
}
-void FlatStoreManager::print(Store store, llvm::raw_ostream& Out,
+void FlatStoreManager::print(Store store, raw_ostream& Out,
const char* nl, const char *sep) {
}