summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/re
diff options
context:
space:
mode:
authorStephan T. Lavavej <stl@exchange.microsoft.com>2018-11-14 03:06:06 +0000
committerStephan T. Lavavej <stl@exchange.microsoft.com>2018-11-14 03:06:06 +0000
commitdec8905e1386fba8180c05457a1686afcad795ce (patch)
treeccf4489401b53218b2751e0b7a3baa9b9a6f253b /libcxx/test/std/re
parentda419bdb5e3e167ea90c6923660059f35fa17d67 (diff)
downloadbcm5719-llvm-dec8905e1386fba8180c05457a1686afcad795ce.tar.gz
bcm5719-llvm-dec8905e1386fba8180c05457a1686afcad795ce.zip
[libcxx] [test] Strip trailing whitespace. NFC.
llvm-svn: 346826
Diffstat (limited to 'libcxx/test/std/re')
-rw-r--r--libcxx/test/std/re/re.results/re.results.const/copy.pass.cpp2
-rw-r--r--libcxx/test/std/re/re.results/re.results.const/copy_assign.pass.cpp2
-rw-r--r--libcxx/test/std/re/re.results/re.results.const/move_assign.pass.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/test/std/re/re.results/re.results.const/copy.pass.cpp b/libcxx/test/std/re/re.results/re.results.const/copy.pass.cpp
index b9cb5b25176..ab0e388b5f4 100644
--- a/libcxx/test/std/re/re.results/re.results.const/copy.pass.cpp
+++ b/libcxx/test/std/re/re.results/re.results.const/copy.pass.cpp
@@ -25,7 +25,7 @@ test(const Allocator& a)
typedef std::match_results<const CharT*, Allocator> SM;
SM m0(a);
SM m1(m0);
-
+
assert(m1.size() == m0.size());
assert(m1.str() == m0.str());
assert(m1.get_allocator() == m0.get_allocator());
diff --git a/libcxx/test/std/re/re.results/re.results.const/copy_assign.pass.cpp b/libcxx/test/std/re/re.results/re.results.const/copy_assign.pass.cpp
index c755b9ff00e..d390d62f04a 100644
--- a/libcxx/test/std/re/re.results/re.results.const/copy_assign.pass.cpp
+++ b/libcxx/test/std/re/re.results/re.results.const/copy_assign.pass.cpp
@@ -25,7 +25,7 @@ test(const Allocator& a)
typedef std::match_results<const CharT*, Allocator> SM;
SM m0(a);
SM m1;
-
+
m1 = m0;
assert(m1.size() == m0.size());
assert(m1.str() == m0.str());
diff --git a/libcxx/test/std/re/re.results/re.results.const/move_assign.pass.cpp b/libcxx/test/std/re/re.results/re.results.const/move_assign.pass.cpp
index de2c98c2be8..2d2e81b1723 100644
--- a/libcxx/test/std/re/re.results/re.results.const/move_assign.pass.cpp
+++ b/libcxx/test/std/re/re.results/re.results.const/move_assign.pass.cpp
@@ -26,7 +26,7 @@ test(const Allocator& a)
typedef std::match_results<const CharT*, Allocator> SM;
SM m0(a);
SM m1;
-
+
m1 = std::move(m0);
assert(m1.size() == 0);
assert(m1.str() == std::basic_string<CharT>());
OpenPOWER on IntegriCloud