diff options
author | Jordy Rose <jediknil@belkadan.com> | 2011-08-20 21:16:58 +0000 |
---|---|---|
committer | Jordy Rose <jediknil@belkadan.com> | 2011-08-20 21:16:58 +0000 |
commit | 5c252ef7b1585794159a4dd78ecf4d8860d41b5e (patch) | |
tree | b662effd981a5614ce54e08218d22ddcea9684b7 /clang/lib/StaticAnalyzer/Core/CFRefCount.cpp | |
parent | 5a3c9ff3a35a1d1768fd711e334bc3f704d37a4e (diff) | |
download | bcm5719-llvm-5c252ef7b1585794159a4dd78ecf4d8860d41b5e.tar.gz bcm5719-llvm-5c252ef7b1585794159a4dd78ecf4d8860d41b5e.zip |
Fix indentation.
llvm-svn: 138211
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/CFRefCount.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/CFRefCount.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/CFRefCount.cpp b/clang/lib/StaticAnalyzer/Core/CFRefCount.cpp index 983c0554ef6..bd404d38801 100644 --- a/clang/lib/StaticAnalyzer/Core/CFRefCount.cpp +++ b/clang/lib/StaticAnalyzer/Core/CFRefCount.cpp @@ -3435,25 +3435,25 @@ class RetainReleaseChecker check::RegionChanges, eval::Assume > { public: - bool wantsRegionUpdate; - - RetainReleaseChecker() : wantsRegionUpdate(true) {} - - void checkBind(SVal loc, SVal val, CheckerContext &C) const; - void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const; - void checkPostStmt(const CastExpr *CE, CheckerContext &C) const; + bool wantsRegionUpdate; + + RetainReleaseChecker() : wantsRegionUpdate(true) {} + + void checkBind(SVal loc, SVal val, CheckerContext &C) const; + void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const; + void checkPostStmt(const CastExpr *CE, CheckerContext &C) const; - const ProgramState *evalAssume(const ProgramState *state, SVal Cond, - bool Assumption) const; + const ProgramState *evalAssume(const ProgramState *state, SVal Cond, + bool Assumption) const; - const ProgramState *checkRegionChanges(const ProgramState *state, - const StoreManager::InvalidatedSymbols *invalidated, - const MemRegion * const *begin, - const MemRegion * const *end) const; - - bool wantsRegionChangeUpdate(const ProgramState *state) const { - return wantsRegionUpdate; - } + const ProgramState *checkRegionChanges(const ProgramState *state, + const StoreManager::InvalidatedSymbols *invalidated, + const MemRegion * const *begin, + const MemRegion * const *end) const; + + bool wantsRegionChangeUpdate(const ProgramState *state) const { + return wantsRegionUpdate; + } }; } // end anonymous namespace |