commit | 022840e9608207305a2e0488763f06fb1b5ad5e5 | [log] [tgz] |
---|---|---|
author | Daniel Dunbar <daniel@zuster.org> | Wed Dec 09 07:19:48 2009 +0000 |
committer | Daniel Dunbar <daniel@zuster.org> | Wed Dec 09 07:19:48 2009 +0000 |
tree | 5c0b8f7c0fc1134135abc061b6c883cc28a5cfaa | |
parent | e18b97121c286eeff5efe89150b093bf1b7b7bfc [diff] [blame] |
DeltaAlgorithm: Add a virtual destructor and home. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90957 91177308-0d34-0410-b5e6-96231b3b80d8
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;