diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-12-07 00:50:23 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-12-07 00:50:23 +0000 |
commit | 4626c9a647f6bdabf236fe3aa70b314cd7fdbbd5 (patch) | |
tree | d1cd0251b071060852f9cb1c1fe7a3b0512acbd5 /libcxx/test/std/strings/basic.string | |
parent | d6037ebeeb3f6d4fddf7563682eb8d44969cc760 (diff) | |
download | bcm5719-llvm-4626c9a647f6bdabf236fe3aa70b314cd7fdbbd5.tar.gz bcm5719-llvm-4626c9a647f6bdabf236fe3aa70b314cd7fdbbd5.zip |
[libcxx] [test] Strip trailing whitespace. NFC.
llvm-svn: 319994
Diffstat (limited to 'libcxx/test/std/strings/basic.string')
3 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp b/libcxx/test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp index fc28bcd30c4..b1f5fcd50cf 100644 --- a/libcxx/test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp @@ -30,7 +30,7 @@ int main() // S s4 { s + 1, 4 }; // S s5 { s, 5 }; S sNot { "def", 3 }; - + LIBCPP_ASSERT_NOEXCEPT(s0.ends_with("")); assert ( s0.ends_with("")); diff --git a/libcxx/test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp b/libcxx/test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp index 0708dffb48e..4bbd4bc864b 100644 --- a/libcxx/test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp @@ -31,7 +31,7 @@ int main() // S s4 { s + 1, 4 }; // S s5 { s, 5 }; S sNot { "def", 3 }; - + SV sv0; SV sv1 { s + 4, 1 }; SV sv2 { s + 3, 2 }; diff --git a/libcxx/test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp b/libcxx/test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp index 2dccd73dff7..d542d3d79e1 100644 --- a/libcxx/test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp @@ -31,7 +31,7 @@ int main() // S s4 { s, 4 }; // S s5 { s, 5 }; S sNot { "def", 3 }; - + SV sv0; SV sv1 { s, 1 }; SV sv2 { s, 2 }; |