aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-12-09 07:19:48 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-12-09 07:19:48 +0000
commitc831c64f16749af9b1a782ace983aee600d59c43 (patch)
tree5c0b8f7c0fc1134135abc061b6c883cc28a5cfaa /lib/Support
parent1a957967ec0e908f69717c8887d427eeaee8e5fc (diff)
downloadexternal_llvm-c831c64f16749af9b1a782ace983aee600d59c43.zip
external_llvm-c831c64f16749af9b1a782ace983aee600d59c43.tar.gz
external_llvm-c831c64f16749af9b1a782ace983aee600d59c43.tar.bz2
DeltaAlgorithm: Add a virtual destructor and home.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90957 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/DeltaAlgorithm.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Support/DeltaAlgorithm.cpp b/lib/Support/DeltaAlgorithm.cpp
index f85ca30..d176548 100644
--- a/lib/Support/DeltaAlgorithm.cpp
+++ b/lib/Support/DeltaAlgorithm.cpp
@@ -11,6 +11,9 @@
#include <iterator>
using namespace llvm;
+DeltaAlgorithm::~DeltaAlgorithm() {
+}
+
bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) {
if (FailedTestsCache.count(Changes))
return false;