diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-02-14 19:12:38 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-02-14 19:12:38 +0000 |
commit | a0fe8c436e8286dca0deb390b75a683a86206e94 (patch) | |
tree | de9b863ff66252c3894e9a5c3743498d64cd5fbb /libcxx/include/algorithm | |
parent | ac407594c26f037cd5cf5576536e4a2e3cbd10bc (diff) | |
download | bcm5719-llvm-a0fe8c436e8286dca0deb390b75a683a86206e94.tar.gz bcm5719-llvm-a0fe8c436e8286dca0deb390b75a683a86206e94.zip |
Chris Jefferson noted many places where function calls needed to be qualified (thanks Chris).
llvm-svn: 125510
Diffstat (limited to 'libcxx/include/algorithm')
-rw-r--r-- | libcxx/include/algorithm | 2 |
1 files changed, 1 insertions, 1 deletions
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 |