diff options
-rw-r--r-- | include/clang/Analysis/PathSensitive/SimulVertex.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/clang/Analysis/PathSensitive/SimulVertex.h b/include/clang/Analysis/PathSensitive/SimulVertex.h index 20ee77c3a0..cf5e67b463 100644 --- a/include/clang/Analysis/PathSensitive/SimulVertex.h +++ b/include/clang/Analysis/PathSensitive/SimulVertex.h @@ -17,17 +17,14 @@ #define LLVM_CLANG_ANALYSIS_PS_ANALYSISVERTEX #include "llvm/ADT/SmallVector.h" - -namespace llvm { - class FoldingSetID; -} +#include "llvm/ADT/FoldingSet.h" namespace clang { class ProgramEdge; template <typename StateTy> -class SimulVertex { +class SimulVertex : public FoldingSetNode { /// VertexID - A unique ID for the vertex. This number indicates the /// creation order of vertices, with lower numbers being created first. /// The first created vertex has VertexID == 0. |