diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2016-06-19 19:29:52 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2016-06-19 19:29:52 +0000 |
commit | 92c9fef95fbcb704f307466261288ee25b3c0bd8 (patch) | |
tree | 3861972e8e350603c2f3ba691b40f492cc2c57b3 | |
parent | 2b007189b0d75919d3e840a3456a7a4fa9b71c85 (diff) | |
download | bcm5719-llvm-92c9fef95fbcb704f307466261288ee25b3c0bd8.tar.gz bcm5719-llvm-92c9fef95fbcb704f307466261288ee25b3c0bd8.zip |
Test commit; remove some spaces at EOL. No functional change.
llvm-svn: 273121
-rw-r--r-- | libcxx/include/utility | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/utility b/libcxx/include/utility index 27b81a0305e..d286e437c1d 100644 --- a/libcxx/include/utility +++ b/libcxx/include/utility @@ -169,7 +169,7 @@ template<size_t N> template<class... T> using index_sequence_for = make_index_sequence<sizeof...(T)>; -template<class T, class U=T> +template<class T, class U=T> T exchange(T& obj, U&& new_value); } // std @@ -817,7 +817,7 @@ template<size_t _Np> template<class... _Tp> using index_sequence_for = make_index_sequence<sizeof...(_Tp)>; - + #endif // _LIBCPP_STD_VER > 11 #if _LIBCPP_STD_VER > 11 @@ -828,7 +828,7 @@ _T1 exchange(_T1& __obj, _T2 && __new_value) _T1 __old_value = _VSTD::move(__obj); __obj = _VSTD::forward<_T2>(__new_value); return __old_value; -} +} #endif // _LIBCPP_STD_VER > 11 _LIBCPP_END_NAMESPACE_STD |