From fab14d3df75fc3af83c06ed85bb9c068f1144351 Mon Sep 17 00:00:00 2001 From: theraven Date: Thu, 7 Feb 2013 13:09:19 +0000 Subject: Import new libc++ to vendor branch. --- include/algorithm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/algorithm') diff --git a/include/algorithm b/include/algorithm index 0f6107b..e24f979 100644 --- a/include/algorithm +++ b/include/algorithm @@ -1528,10 +1528,10 @@ copy(_InputIterator __first, _InputIterator __last, _OutputIterator __result) // copy_backward -template +template inline _LIBCPP_INLINE_VISIBILITY _OutputIterator -__copy_backward(_InputIterator __first, _InputIterator __last, _OutputIterator __result) +__copy_backward(_BidirectionalIterator __first, _BidirectionalIterator __last, _OutputIterator __result) { while (__first != __last) *--__result = *--__last; -- cgit v1.1