[cfe-commits] r112928 - /cfe/trunk/include/clang/Analysis/ProgramPoint.h
Ted Kremenek
kremenek at apple.com
Thu Sep 2 18:06:44 PDT 2010
Author: kremenek
Date: Thu Sep 2 20:06:44 2010
New Revision: 112928
URL: http://llvm.org/viewvc/llvm-project?rev=112928&view=rev
Log:
Fix enum: CallEnter/CallExit are StmtPoints
Modified:
cfe/trunk/include/clang/Analysis/ProgramPoint.h
Modified: cfe/trunk/include/clang/Analysis/ProgramPoint.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/ProgramPoint.h?rev=112928&r1=112927&r2=112928&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/ProgramPoint.h (original)
+++ cfe/trunk/include/clang/Analysis/ProgramPoint.h Thu Sep 2 20:06:44 2010
@@ -47,7 +47,7 @@
CallEnterKind,
CallExitKind,
MinPostStmtKind = PostStmtKind,
- MaxPostStmtKind = PostLValueKind };
+ MaxPostStmtKind = CallExitKind };
private:
std::pair<const void *, const void *> Data;
More information about the cfe-commits
mailing list