diff options
author | Howard Hinnant <hhinnant@apple.com> | 2013-08-22 18:02:34 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2013-08-22 18:02:34 +0000 |
commit | 9ff3203fccd7a496fd1ee16ac94e380d768d6177 (patch) | |
tree | fe0eb53b473c5c5ecf94bd9ff3129c27b83c8446 /libcxx/include | |
parent | 89732e136273e747f6aaea6bfdee31fa66ada880 (diff) | |
download | bcm5719-llvm-9ff3203fccd7a496fd1ee16ac94e380d768d6177.tar.gz bcm5719-llvm-9ff3203fccd7a496fd1ee16ac94e380d768d6177.zip |
Zhihao Yuan noted that a move assignment operation was missing from std::adjacent_difference. Fixed.
llvm-svn: 189036
Diffstat (limited to 'libcxx/include')
-rw-r--r-- | libcxx/include/numeric | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/numeric b/libcxx/include/numeric index c201a5f57cb..e520c8e0d75 100644 --- a/libcxx/include/numeric +++ b/libcxx/include/numeric @@ -157,7 +157,7 @@ adjacent_difference(_InputIterator __first, _InputIterator __last, _OutputIterat { typename iterator_traits<_InputIterator>::value_type __t2(*__first); *__result = __t2 - __t1; - __t1 = __t2; + __t1 = _VSTD::move(__t2); } } return __result; @@ -177,7 +177,7 @@ adjacent_difference(_InputIterator __first, _InputIterator __last, _OutputIterat { typename iterator_traits<_InputIterator>::value_type __t2(*__first); *__result = __binary_op(__t2, __t1); - __t1 = __t2; + __t1 = _VSTD::move(__t2); } } return __result; |