From: Ted Kremenek Date: Sun, 13 Jan 2008 04:08:45 +0000 (+0000) Subject: Now include "CFG.h" because the inline methods of "BlockEntrance" accessor X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05e14cd46ef44c07385aae96ec2fdcb9bf7e9467;p=clang 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 --- 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 namespace clang { - - class CFG; - class CFGBlock; - class Stmt; - + class ProgramPoint { public: enum Kind { BlockEntranceKind=0, PostStmtKind=1, BlockExitKind=2,