From: Chris Lattner Date: Wed, 13 Oct 2004 15:11:23 +0000 (+0000) Subject: Use explicit std:: qualification to avoid relying on Koenig lookup, which X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fbb719c7f026525d54a8332ef66c7514a0cf2383;p=oota-llvm.git Use explicit std:: qualification to avoid relying on Koenig lookup, which VC++ does not do properly. Thanks to Morten Ofstad for the patch! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16955 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/SetVector.h b/include/llvm/ADT/SetVector.h index cd5c2df7f11..b40ed7c3e03 100644 --- a/include/llvm/ADT/SetVector.h +++ b/include/llvm/ADT/SetVector.h @@ -112,7 +112,7 @@ public: /// @brief Remove an item from the set vector. void remove(const value_type& X) { if (0 < set_.erase(X)) { - iterator I = find(vector_.begin(),vector_.end(),X); + iterator I = std::find(vector_.begin(),vector_.end(),X); assert(I != vector_.end() && "Corrupted SetVector instances!"); vector_.erase(I); }