diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-09-03 01:06:44 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-09-03 01:06:44 +0000 |
commit | 4462ee2f0000e6cb966e3fff4516c84292f0cce8 (patch) | |
tree | c73bc6b5030303cd4dcb085785e481aa42d9cc0e /include/clang/Analysis/ProgramPoint.h | |
parent | 2d0e2431b2ddd16cd87176a3bf6c2529b8acaab2 (diff) |
Fix enum: CallEnter/CallExit are StmtPoints
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112928 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/ProgramPoint.h')
-rw-r--r-- | include/clang/Analysis/ProgramPoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Analysis/ProgramPoint.h b/include/clang/Analysis/ProgramPoint.h index c71c3059ff..ba303de7a8 100644 --- a/include/clang/Analysis/ProgramPoint.h +++ b/include/clang/Analysis/ProgramPoint.h @@ -47,7 +47,7 @@ public: CallEnterKind, CallExitKind, MinPostStmtKind = PostStmtKind, - MaxPostStmtKind = PostLValueKind }; + MaxPostStmtKind = CallExitKind }; private: std::pair<const void *, const void *> Data; |