summaryrefslogtreecommitdiffstats
path: root/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.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/Checkers/PthreadLockChecker.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/Checkers/PthreadLockChecker.cpp')
-rw-r--r--clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
index 162dba890bd..09a22ea5b42 100644
--- a/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
+++ b/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
@@ -48,7 +48,7 @@ namespace clang {
namespace ento {
template <> struct GRStateTrait<LockSet> :
public GRStatePartialTrait<llvm::ImmutableList<const MemRegion*> > {
- static void* GDMIndex() { static int x = 0; return &x; }
+ static void *GDMIndex() { static int x = 0; return &x; }
};
} // end GR namespace
} // end clang namespace
OpenPOWER on IntegriCloud