From 7afe973add96f7b189b018239b5b9e43fe4a8dcf Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Mon, 28 Jan 2008 22:05:23 +0000 Subject: [PATCH] Added destructor for template class FoldingSetNodeWrapper. Added getValue() to FoldingSetNodeWrapper. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46465 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/FoldingSet.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/llvm/ADT/FoldingSet.h b/include/llvm/ADT/FoldingSet.h index 112d86c5f64..bfbf99c269b 100644 --- a/include/llvm/ADT/FoldingSet.h +++ b/include/llvm/ADT/FoldingSet.h @@ -329,7 +329,7 @@ class FoldingSetNodeWrapper : public FoldingSetNode { T data; public: FoldingSetNodeWrapper(const T& x) : data(x) {} - virtual ~FoldingSetNodeWrapper(); + virtual ~FoldingSetNodeWrapper() {} template explicit FoldingSetNodeWrapper(const A1& a1) @@ -356,6 +356,9 @@ public: void Profile(FoldingSetNodeID& ID) { FoldingSetTrait::Profile(data, ID); } + T& getValue() { return data; } + const T& getValue() const { return data; } + operator T&() { return data; } operator const T&() const { return data; } };