From 5facce90d015c3785d8052990ca88b7e4bf77892 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Fri, 21 Dec 2007 22:41:58 +0000 Subject: [PATCH] SimulVertex now subclasses FoldingSetNode. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45296 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Analysis/PathSensitive/SimulVertex.h | 7 ++----- 1 file 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 -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. -- 2.40.0