[llvm-commits] [llvm] r90557 - /llvm/trunk/lib/Support/DeltaAlgorithm.cpp
Daniel Dunbar
daniel at zuster.org
Fri Dec 4 00:17:08 PST 2009
Author: ddunbar
Date: Fri Dec 4 02:17:07 2009
New Revision: 90557
URL: http://llvm.org/viewvc/llvm-project?rev=90557&view=rev
Log:
Fix typo and add missing include.
Modified:
llvm/trunk/lib/Support/DeltaAlgorithm.cpp
Modified: llvm/trunk/lib/Support/DeltaAlgorithm.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/DeltaAlgorithm.cpp?rev=90557&r1=90556&r2=90557&view=diff
==============================================================================
--- llvm/trunk/lib/Support/DeltaAlgorithm.cpp (original)
+++ llvm/trunk/lib/Support/DeltaAlgorithm.cpp Fri Dec 4 02:17:07 2009
@@ -1,4 +1,4 @@
-//===--- DeltaAlgorithm.h - A Set Minimization Algorithm -------*- C++ -*--===//
+//===--- DeltaAlgorithm.cpp - A Set Minimization Algorithm -----*- C++ -*--===//
//
// The LLVM Compiler Infrastructure
//
@@ -8,6 +8,7 @@
#include "llvm/ADT/DeltaAlgorithm.h"
#include <algorithm>
+#include <iterator>
using namespace llvm;
bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) {
More information about the llvm-commits
mailing list