From d333139411d18f659285c1f7b565c9366a862769 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 9 Dec 2009 07:19:48 +0000 Subject: DeltaAlgorithm: Add a virtual destructor and home. llvm-svn: 90957 --- llvm/lib/Support/DeltaAlgorithm.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'llvm/lib/Support/DeltaAlgorithm.cpp') diff --git a/llvm/lib/Support/DeltaAlgorithm.cpp b/llvm/lib/Support/DeltaAlgorithm.cpp index f85ca30..d176548 100644 --- a/llvm/lib/Support/DeltaAlgorithm.cpp +++ b/llvm/lib/Support/DeltaAlgorithm.cpp @@ -11,6 +11,9 @@ #include using namespace llvm; +DeltaAlgorithm::~DeltaAlgorithm() { +} + bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) { if (FailedTestsCache.count(Changes)) return false; -- cgit v1.1