commit | d333139411d18f659285c1f7b565c9366a862769 | [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 | eae2e88e7cc0eded58b21ee3797028185f5fd92c | |
parent | 0c315471684817fda3a7343cd4ba7e352fad6799 [diff] [blame] |
DeltaAlgorithm: Add a virtual destructor and home. llvm-svn: 90957
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 <iterator> using namespace llvm; +DeltaAlgorithm::~DeltaAlgorithm() { +} + bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) { if (FailedTestsCache.count(Changes)) return false;