[NFC] Fix typo in <tuple>

llvm-svn: 346629
This commit is contained in:
Louis Dionne 2018-11-12 01:28:07 +00:00
parent 7349d90b74
commit d9247890da
1 changed files with 1 additions and 1 deletions

View File

@ -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&>())...));
};