From a0fe8c436e8286dca0deb390b75a683a86206e94 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Mon, 14 Feb 2011 19:12:38 +0000 Subject: Chris Jefferson noted many places where function calls needed to be qualified (thanks Chris). llvm-svn: 125510 --- libcxx/include/algorithm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcxx/include/algorithm') diff --git a/libcxx/include/algorithm b/libcxx/include/algorithm index a3764dfd0c1..d91c57c1109 100644 --- a/libcxx/include/algorithm +++ b/libcxx/include/algorithm @@ -1573,7 +1573,7 @@ typename enable_if >::type copy_n(_InputIterator __first, _Size __n, _OutputIterator __result) { - return copy(__first, __first + __n, __result); + return _STD::copy(__first, __first + __n, __result); } // move -- cgit v1.2.3