diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-01-11 02:34:45 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-01-11 02:34:45 +0000 |
commit | 926c96211ee98aa370b20a04a699d36ba4a8fed1 (patch) | |
tree | b21d0faba8bc3d5260f447e43a3ac43d30ebb774 /clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp | |
parent | 0dd423ef334c9d7c2a69ceace7e8329e1f2f4932 (diff) | |
download | bcm5719-llvm-926c96211ee98aa370b20a04a699d36ba4a8fed1.tar.gz bcm5719-llvm-926c96211ee98aa370b20a04a699d36ba4a8fed1.zip |
Rename misc. methods in GRSubEngine to start
with a lower-case letter. No functionality change.
llvm-svn: 123211
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp index b7513c39c13..e0b7e8a100b 100644 --- a/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp @@ -34,7 +34,7 @@ public: void PreVisitDeclStmt(CheckerContext &C, const DeclStmt *DS); void MarkLiveSymbols(const GRState *state, SymbolReaper &SR); void evalDeadSymbols(CheckerContext &C, SymbolReaper &SR); - bool WantsRegionChangeUpdate(const GRState *state); + bool wantsRegionChangeUpdate(const GRState *state); const GRState *EvalRegionChanges(const GRState *state, const MemRegion * const *Begin, @@ -957,7 +957,7 @@ void CStringChecker::PreVisitDeclStmt(CheckerContext &C, const DeclStmt *DS) { C.addTransition(state); } -bool CStringChecker::WantsRegionChangeUpdate(const GRState *state) { +bool CStringChecker::wantsRegionChangeUpdate(const GRState *state) { CStringLength::EntryMap Entries = state->get<CStringLength>(); return !Entries.isEmpty(); } |