[NFC] Strip trailing whitespace from libc++
diff --git a/libcxx/test/std/strings/strings.erasure/erase.pass.cpp b/libcxx/test/std/strings/strings.erasure/erase.pass.cpp
index 5013300..26d6b86 100644
--- a/libcxx/test/std/strings/strings.erasure/erase.pass.cpp
+++ b/libcxx/test/std/strings/strings.erasure/erase.pass.cpp
@@ -11,7 +11,7 @@
// template <class charT, class traits, class Allocator, class U>
// void erase(basic_string<charT, traits, Allocator>& c, const U& value);
-
+
#include <string>
#include <optional>
diff --git a/libcxx/test/std/strings/strings.erasure/erase_if.pass.cpp b/libcxx/test/std/strings/strings.erasure/erase_if.pass.cpp
index 5f2fb01..30a58c0 100644
--- a/libcxx/test/std/strings/strings.erasure/erase_if.pass.cpp
+++ b/libcxx/test/std/strings/strings.erasure/erase_if.pass.cpp
@@ -10,7 +10,7 @@
// <string>
// template <class charT, class traits, class Allocator, class Predicate>
-// void erase_if(basic_string<charT, traits, Allocator>& c, Predicate pred);
+// void erase_if(basic_string<charT, traits, Allocator>& c, Predicate pred);
#include <string>
@@ -37,7 +37,7 @@
auto isD = [](auto ch) { return ch == 'd';};
auto True = [](auto) { return true; };
auto False = [](auto) { return false; };
-
+
test0(S(""), isA, S(""));
test0(S("a"), isA, S(""));