From: Daniel Dunbar Date: Tue, 8 Jun 2010 17:21:57 +0000 (+0000) Subject: Use const_iterator where appropriate. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ef45832d7cc6a846cc194ef2764b76ac994fe137;p=oota-llvm.git Use const_iterator where appropriate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105620 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/DAGDeltaAlgorithm.cpp b/lib/Support/DAGDeltaAlgorithm.cpp index 4da3fe34c88..814566494d3 100644 --- a/lib/Support/DAGDeltaAlgorithm.cpp +++ b/lib/Support/DAGDeltaAlgorithm.cpp @@ -290,7 +290,7 @@ bool DAGDeltaAlgorithmImpl::GetTestResult(const changeset_ty &Changes, const changeset_ty &Required) { changeset_ty Extended(Required); Extended.insert(Changes.begin(), Changes.end()); - for (changeset_ty::iterator it = Changes.begin(), + for (changeset_ty::const_iterator it = Changes.begin(), ie = Changes.end(); it != ie; ++it) Extended.insert(pred_closure_begin(*it), pred_closure_end(*it));