From 08de4b0d4e17e42efbb0b7686a2ef53864ec30bc Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 22 Dec 2014 19:10:11 +0000 Subject: Fix PR22000. __bit_iterator::move_backwards. Also make a note that __bit_iterator is quite underrepresented in the libc++ tests suite. llvm-svn: 224723 --- libcxx/include/__bit_reference | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcxx') diff --git a/libcxx/include/__bit_reference b/libcxx/include/__bit_reference index d9ebfbe5e61..4938f44608f 100644 --- a/libcxx/include/__bit_reference +++ b/libcxx/include/__bit_reference @@ -705,7 +705,7 @@ inline _LIBCPP_INLINE_VISIBILITY __bit_iterator<_Cp, false> move_backward(__bit_iterator<_Cp, _IsConst> __first, __bit_iterator<_Cp, _IsConst> __last, __bit_iterator<_Cp, false> __result) { - return _VSTD::copy(__first, __last, __result); + return _VSTD::copy_backward(__first, __last, __result); } // swap_ranges -- cgit v1.2.3