summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan T. Lavavej <stl@exchange.microsoft.com>2017-12-07 00:50:23 +0000
committerStephan T. Lavavej <stl@exchange.microsoft.com>2017-12-07 00:50:23 +0000
commit8148a70b20eb4fa98cafc92f0d4dd6b908951978 (patch)
treebbbb6b042eeab67850c1a8bb272b95f332b29357
parentcd9466e36fd106b924299bca0dec0e06530b75a0 (diff)
[libcxx] [test] Strip trailing whitespace. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@319994 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/std/experimental/filesystem/class.path/path.member/path.decompose/path.decompose.pass.cpp2
-rw-r--r--test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp2
-rw-r--r--test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp2
-rw-r--r--test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp2
-rw-r--r--test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/test/std/experimental/filesystem/class.path/path.member/path.decompose/path.decompose.pass.cpp b/test/std/experimental/filesystem/class.path/path.member/path.decompose/path.decompose.pass.cpp
index 823865ba7..267d4932c 100644
--- a/test/std/experimental/filesystem/class.path/path.member/path.decompose/path.decompose.pass.cpp
+++ b/test/std/experimental/filesystem/class.path/path.member/path.decompose/path.decompose.pass.cpp
@@ -178,7 +178,7 @@ void decompFilenameTest()
path p(TC.raw);
assert(p == TC.raw);
ASSERT_NOEXCEPT(p.empty());
-
+
assert(p.filename() == TC.filename);
assert(p.has_filename() != TC.filename.empty());
diff --git a/test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp b/test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp
index fc28bcd30..b1f5fcd50 100644
--- a/test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp
+++ b/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/test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp b/test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp
index 0708dffb4..4bbd4bc86 100644
--- a/test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp
+++ b/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/test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp b/test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp
index 2dccd73df..d542d3d79 100644
--- a/test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp
+++ b/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 };
diff --git a/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp b/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp
index ebddeca60..e06229f7e 100644
--- a/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp
+++ b/test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp
@@ -32,7 +32,7 @@ int main()
test_remove_cvref<const volatile int, int>();
test_remove_cvref<volatile int, int>();
-// Doesn't decay
+// Doesn't decay
test_remove_cvref<int[3], int[3]>();
test_remove_cvref<int const [3], int[3]>();
test_remove_cvref<int volatile [3], int[3]>();