[cfe-commits] r45925 - /cfe/trunk/include/clang/Analysis/ProgramPoint.h

Ted Kremenek kremenek at apple.com
Sat Jan 12 20:08:46 PST 2008


Author: kremenek
Date: Sat Jan 12 22:08:45 2008
New Revision: 45925

URL: http://llvm.org/viewvc/llvm-project?rev=45925&view=rev
Log:
Now include "CFG.h" because the inline methods of "BlockEntrance" accessor
the methods of CFGBlock.

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=45925&r1=45924&r2=45925&view=diff

==============================================================================
--- cfe/trunk/include/clang/Analysis/ProgramPoint.h (original)
+++ cfe/trunk/include/clang/Analysis/ProgramPoint.h Sat Jan 12 22:08:45 2008
@@ -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,





More information about the cfe-commits mailing list