[libcxx] r346629 - [NFC] Fix typo in <tuple>
Louis Dionne
ldionne at apple.com
Sun Nov 11 17:28:08 PST 2018
Author: ldionne
Date: Sun Nov 11 17:28:07 2018
New Revision: 346629
URL: http://llvm.org/viewvc/llvm-project?rev=346629&view=rev
Log:
[NFC] Fix typo in <tuple>
Modified:
libcxx/trunk/include/tuple
Modified: libcxx/trunk/include/tuple
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/tuple?rev=346629&r1=346628&r2=346629&view=diff
==============================================================================
--- libcxx/trunk/include/tuple (original)
+++ libcxx/trunk/include/tuple Sun Nov 11 17:28:07 2018
@@ -65,7 +65,7 @@ public:
template <class U1, class U2>
tuple& operator=(const pair<U1, U2>&); // iff sizeof...(T) == 2
template <class U1, class U2>
- tuple& operator=(pair<U1, U2>&&); //iffsizeof...(T) == 2
+ tuple& operator=(pair<U1, U2>&&); // iff sizeof...(T) == 2
void swap(tuple&) noexcept(AND(swap(declval<T&>(), declval<T&>())...));
};
More information about the libcxx-commits
mailing list