From d8717289a664bde05bb89bd1a050912593d6db9a Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Thu, 19 Nov 2015 19:41:04 +0000 Subject: [PATCH] Fix some mistakes in the synopsis. No functional change. Thanks to K-ballo for the patch git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@253592 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/array | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/array b/include/array index 2e02a43e..36096905 100644 --- a/include/array +++ b/include/array @@ -89,12 +89,12 @@ template void swap(array& x, array& y) noexcept(noexcept(x.swap(y))); template class tuple_size; -template class tuple_element; +template class tuple_element; template struct tuple_size>; -template struct tuple_element>; -template T& get(array&) noexcept; // constexpr in C++14 -template const T& get(const array&) noexcept; // constexpr in C++14 -template T&& get(array&&) noexcept; // constexpr in C++14 +template struct tuple_element>; +template T& get(array&) noexcept; // constexpr in C++14 +template const T& get(const array&) noexcept; // constexpr in C++14 +template T&& get(array&&) noexcept; // constexpr in C++14 } // std