commit | a0fe8c436e8286dca0deb390b75a683a86206e94 | [log] [tgz] |
---|---|---|
author | Howard Hinnant <hhinnant@apple.com> | Mon Feb 14 19:12:38 2011 +0000 |
committer | Howard Hinnant <hhinnant@apple.com> | Mon Feb 14 19:12:38 2011 +0000 |
tree | de9b863ff66252c3894e9a5c3743498d64cd5fbb | |
parent | ac407594c26f037cd5cf5576536e4a2e3cbd10bc [diff] [blame] |
Chris Jefferson noted many places where function calls needed to be qualified (thanks Chris). llvm-svn: 125510
diff --git a/libcxx/include/algorithm b/libcxx/include/algorithm index a3764df..d91c57c 100644 --- a/libcxx/include/algorithm +++ b/libcxx/include/algorithm
@@ -1573,7 +1573,7 @@ >::type copy_n(_InputIterator __first, _Size __n, _OutputIterator __result) { - return copy(__first, __first + __n, __result); + return _STD::copy(__first, __first + __n, __result); } // move