Move a bunch of methods from CallSite to CallSiteBase, so that they can
[oota-llvm.git] / lib / Support / DeltaAlgorithm.cpp
index 9aabd8d1a01ef1f7819f4e9db45a6e9f8b2ebf6e..d176548189191e5f93ea4ded9e82b76c89f3cebb 100644 (file)
@@ -1,4 +1,4 @@
-//===--- DeltaAlgorithm.h - A Set Minimization Algorithm -------*- C++ -*--===//
+//===--- DeltaAlgorithm.cpp - A Set Minimization Algorithm -----*- C++ -*--===//
 //
 //                     The LLVM Compiler Infrastructure
 //
@@ -8,8 +8,12 @@
 
 #include "llvm/ADT/DeltaAlgorithm.h"
 #include <algorithm>
+#include <iterator>
 using namespace llvm;
 
+DeltaAlgorithm::~DeltaAlgorithm() {
+}
+
 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) {
   if (FailedTestsCache.count(Changes))
     return false;