diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2018-11-14 03:06:06 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2018-11-14 03:06:06 +0000 |
commit | dec8905e1386fba8180c05457a1686afcad795ce (patch) | |
tree | ccf4489401b53218b2751e0b7a3baa9b9a6f253b /libcxx/test/std/containers/views/span.cons/stdarray.pass.cpp | |
parent | da419bdb5e3e167ea90c6923660059f35fa17d67 (diff) | |
download | bcm5719-llvm-dec8905e1386fba8180c05457a1686afcad795ce.tar.gz bcm5719-llvm-dec8905e1386fba8180c05457a1686afcad795ce.zip |
[libcxx] [test] Strip trailing whitespace. NFC.
llvm-svn: 346826
Diffstat (limited to 'libcxx/test/std/containers/views/span.cons/stdarray.pass.cpp')
-rw-r--r-- | libcxx/test/std/containers/views/span.cons/stdarray.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/containers/views/span.cons/stdarray.pass.cpp b/libcxx/test/std/containers/views/span.cons/stdarray.pass.cpp index 1832ac2ba49..27623a4c9f7 100644 --- a/libcxx/test/std/containers/views/span.cons/stdarray.pass.cpp +++ b/libcxx/test/std/containers/views/span.cons/stdarray.pass.cpp @@ -7,14 +7,14 @@ // Source Licenses. See LICENSE.TXT for details. // //===---------------------------------------------------------------------===// -// UNSUPPORTED: c++98, c++03, c++11, c++14, c++17 +// UNSUPPORTED: c++98, c++03, c++11, c++14, c++17 // <span> // template<size_t N> // constexpr span(array<value_type, N>& arr) noexcept; // template<size_t N> -// constexpr span(const array<value_type, N>& arr) noexcept; +// constexpr span(const array<value_type, N>& arr) noexcept; // // Remarks: These constructors shall not participate in overload resolution unless: // — extent == dynamic_extent || N == extent is true, and |