commit | 9c378f705405d37f49795d5e915989de774fe11f | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Fri Aug 12 23:37:29 2011 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Fri Aug 12 23:37:29 2011 +0000 |
tree | 22c5b5a83754bc74fdc5b45f842dd69d0f7af752 | |
parent | a40b7f2c4a968a0f35f088cd009d671389b09ac2 [diff] [blame] |
Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer and libStaticAnalyzer[*]. It was highly inconsistent, and very ugly to look at. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137537 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/StaticAnalyzer/Checkers/OSAtomicChecker.cpp b/lib/StaticAnalyzer/Checkers/OSAtomicChecker.cpp index 72d064e..09bd8c5 100644 --- a/lib/StaticAnalyzer/Checkers/OSAtomicChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/OSAtomicChecker.cpp
@@ -37,7 +37,7 @@ const Expr *Callee = CE->getCallee(); SVal L = state->getSVal(Callee); - const FunctionDecl* FD = L.getAsFunctionDecl(); + const FunctionDecl *FD = L.getAsFunctionDecl(); if (!FD) return false;