summaryrefslogtreecommitdiffstats
path: root/clang/lib/StaticAnalyzer/Core/Environment.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2011-08-12 23:37:29 +0000
committerTed Kremenek <kremenek@apple.com>2011-08-12 23:37:29 +0000
commit5ef32dbf2a1ea68f670c9f46a36e1b816c317c43 (patch)
treece8f3b89dceecb9395913a20d7af27d143829795 /clang/lib/StaticAnalyzer/Core/Environment.cpp
parent16e0c68627e11db66466e10c55d506038af23b47 (diff)
downloadbcm5719-llvm-5ef32dbf2a1ea68f670c9f46a36e1b816c317c43.tar.gz
bcm5719-llvm-5ef32dbf2a1ea68f670c9f46a36e1b816c317c43.zip
Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer and libStaticAnalyzer[*]. It was highly inconsistent, and very ugly to look at.
llvm-svn: 137537
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/Environment.cpp')
-rw-r--r--clang/lib/StaticAnalyzer/Core/Environment.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/Environment.cpp b/clang/lib/StaticAnalyzer/Core/Environment.cpp
index a695437f26e..2572c12a141 100644
--- a/clang/lib/StaticAnalyzer/Core/Environment.cpp
+++ b/clang/lib/StaticAnalyzer/Core/Environment.cpp
@@ -18,7 +18,7 @@
using namespace clang;
using namespace ento;
-SVal Environment::lookupExpr(const Stmt* E) const {
+SVal Environment::lookupExpr(const Stmt *E) const {
const SVal* X = ExprBindings.lookup(E);
if (X) {
SVal V = *X;
OpenPOWER on IntegriCloud