diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-01-13 04:08:45 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-01-13 04:08:45 +0000 |
commit | 05e14cd46ef44c07385aae96ec2fdcb9bf7e9467 (patch) | |
tree | 92a6ae129a8e19d159478f0cfec9c4a5516c6636 /include/clang/Analysis/ProgramPoint.h | |
parent | 51125a21eafc29c925cac3655b46cfd8ef55f764 (diff) |
Now include "CFG.h" because the inline methods of "BlockEntrance" accessor
the methods of CFGBlock.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45925 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/ProgramPoint.h')
-rw-r--r-- | include/clang/Analysis/ProgramPoint.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/clang/Analysis/ProgramPoint.h b/include/clang/Analysis/ProgramPoint.h index 8438e5602f..814d565daa 100644 --- a/include/clang/Analysis/ProgramPoint.h +++ b/include/clang/Analysis/ProgramPoint.h @@ -15,16 +15,13 @@ #ifndef LLVM_CLANG_ANALYSIS_PROGRAM_POINT #define LLVM_CLANG_ANALYSIS_PROGRAM_POINT +#include "clang/AST/CFG.h" #include "llvm/Support/DataTypes.h" #include "llvm/ADT/DenseMap.h" #include <cassert> namespace clang { - - class CFG; - class CFGBlock; - class Stmt; - + class ProgramPoint { public: enum Kind { BlockEntranceKind=0, PostStmtKind=1, BlockExitKind=2, |