[libcxx] r273121 - Test commit; remove some spaces at EOL. No functional change.
Marshall Clow via cfe-commits
cfe-commits at lists.llvm.org
Sun Jun 19 12:29:52 PDT 2016
Author: marshall
Date: Sun Jun 19 14:29:52 2016
New Revision: 273121
URL: http://llvm.org/viewvc/llvm-project?rev=273121&view=rev
Log:
Test commit; remove some spaces at EOL. No functional change.
Modified:
libcxx/trunk/include/utility
Modified: libcxx/trunk/include/utility
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/utility?rev=273121&r1=273120&r2=273121&view=diff
==============================================================================
--- libcxx/trunk/include/utility (original)
+++ libcxx/trunk/include/utility Sun Jun 19 14:29:52 2016
@@ -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_va
_T1 __old_value = _VSTD::move(__obj);
__obj = _VSTD::forward<_T2>(__new_value);
return __old_value;
-}
+}
#endif // _LIBCPP_STD_VER > 11
_LIBCPP_END_NAMESPACE_STD
More information about the cfe-commits
mailing list