diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-12-17 04:44:39 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-12-17 04:44:39 +0000 |
commit | 0a3ed3143b00f237decb1288c1ff574ae09eba4e (patch) | |
tree | 34f68cb82244fd396193d9ff970e637a73282879 /include/clang/Checker/PathSensitive | |
parent | 9c39acfda88268bcc7fb5521b55ce41942dcb3b0 (diff) |
Rename several methods/functions in the analyzer
to start with lowercase characters. No
functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122035 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Checker/PathSensitive')
-rw-r--r-- | include/clang/Checker/PathSensitive/GRExprEngine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Checker/PathSensitive/GRExprEngine.h b/include/clang/Checker/PathSensitive/GRExprEngine.h index 0b44c32ec3..c18d3b1c7e 100644 --- a/include/clang/Checker/PathSensitive/GRExprEngine.h +++ b/include/clang/Checker/PathSensitive/GRExprEngine.h @@ -60,8 +60,8 @@ class GRExprEngine : public GRSubEngine { /// variables and symbols (as determined by a liveness analysis). const GRState* CleanedState; - /// CurrentStmt - The current block-level statement. - const Stmt* CurrentStmt; + /// currentStmt - The current block-level statement. + const Stmt* currentStmt; // Obj-C Class Identifiers. IdentifierInfo* NSExceptionII; |