Implement LWG issue 2061

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@189345 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2013-08-27 13:03:03 +00:00
parent 5ec0ff81ce
commit af74651f61
3 changed files with 9 additions and 2 deletions

View File

@@ -1016,7 +1016,7 @@ operator+(typename move_iterator<_Iter>::difference_type __n, const move_iterato
template <class _Iter>
inline _LIBCPP_INLINE_VISIBILITY
move_iterator<_Iter>
make_move_iterator(const _Iter& __i)
make_move_iterator(_Iter __i)
{
return move_iterator<_Iter>(__i);
}