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.sub/first.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.sub/first.pass.cpp')
-rw-r--r-- | libcxx/test/std/containers/views/span.sub/first.pass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/test/std/containers/views/span.sub/first.pass.cpp b/libcxx/test/std/containers/views/span.sub/first.pass.cpp index 3bfdab9f8a5..e745fd77df7 100644 --- a/libcxx/test/std/containers/views/span.sub/first.pass.cpp +++ b/libcxx/test/std/containers/views/span.sub/first.pass.cpp @@ -7,7 +7,7 @@ // 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> @@ -114,7 +114,7 @@ int main () { using Sp = std::span<std::string>; testConstexprSpan<Sp, 0>(Sp{}); - + testRuntimeSpan<Sp, 0>(Sp{sarr}); testRuntimeSpan<Sp, 1>(Sp{sarr}); testRuntimeSpan<Sp, 2>(Sp{sarr}); @@ -125,7 +125,7 @@ int main () { using Sp = std::span<std::string, 5>; - + testRuntimeSpan<Sp, 0>(Sp{sarr}); testRuntimeSpan<Sp, 1>(Sp{sarr}); testRuntimeSpan<Sp, 2>(Sp{sarr}); |