diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2016-11-14 18:22:19 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2016-11-14 18:22:19 +0000 |
commit | 1c7fe126ee16857243738ebc1dbaea69caffefb1 (patch) | |
tree | 9ccb4a534b61893d510b4ab870a93892479b92a6 /libcxx/include/algorithm | |
parent | ccf2fa1cb64f8b292cfbe964905c4a802fb6dd87 (diff) | |
download | bcm5719-llvm-1c7fe126ee16857243738ebc1dbaea69caffefb1.tar.gz bcm5719-llvm-1c7fe126ee16857243738ebc1dbaea69caffefb1.zip |
Fixes for LWG 2598, 2686, 2739, 2742, 2747, and 2759, which were adopted last week in Issaquah
llvm-svn: 286858
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 3bafd3df79d..c5a5d0ad880 100644 --- a/libcxx/include/algorithm +++ b/libcxx/include/algorithm @@ -877,7 +877,7 @@ for_each(_InputIterator __first, _InputIterator __last, _Function __f) { for (; __first != __last; ++__first) __f(*__first); - return _LIBCPP_EXPLICIT_MOVE(__f); // explicitly moved for (emulated) C++03 + return __f; } // find |