diff options
| author | Louis Dionne <ldionne@apple.com> | 2018-11-12 01:28:07 +0000 |
|---|---|---|
| committer | Louis Dionne <ldionne@apple.com> | 2018-11-12 01:28:07 +0000 |
| commit | d9247890da49921c5b117123c27e6e2d937818eb (patch) | |
| tree | f5caa7af9997c2939f889e7f648e118717ef2fa5 /libcxx | |
| parent | 7349d90b74c88ea9910978f862c622168e357132 (diff) | |
| download | bcm5719-llvm-d9247890da49921c5b117123c27e6e2d937818eb.tar.gz bcm5719-llvm-d9247890da49921c5b117123c27e6e2d937818eb.zip | |
[NFC] Fix typo in <tuple>
llvm-svn: 346629
Diffstat (limited to 'libcxx')
| -rw-r--r-- | libcxx/include/tuple | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/tuple b/libcxx/include/tuple index fb5428ec1c3..766f2e3c49b 100644 --- a/libcxx/include/tuple +++ b/libcxx/include/tuple @@ -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&>())...)); }; |

