]> granicus.if.org Git - clang/commitdiff
Now include "CFG.h" because the inline methods of "BlockEntrance" accessor
authorTed Kremenek <kremenek@apple.com>
Sun, 13 Jan 2008 04:08:45 +0000 (04:08 +0000)
committerTed Kremenek <kremenek@apple.com>
Sun, 13 Jan 2008 04:08:45 +0000 (04:08 +0000)
the methods of CFGBlock.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45925 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/ProgramPoint.h

index 8438e5602fa73ceeea4fd353efd81f99fcf25498..814d565daacff19a1bba1256e16b76ce90cac877 100644 (file)
 #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,