summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/containers/sequences
diff options
context:
space:
mode:
authorStephan T. Lavavej <stl@exchange.microsoft.com>2018-06-14 00:12:20 +0000
committerStephan T. Lavavej <stl@exchange.microsoft.com>2018-06-14 00:12:20 +0000
commitcb0d20519e9713b7443e1bd2917f75f739ccec8d (patch)
treeda34c1bf4578eec92367f3594f11b576dc843212 /libcxx/test/std/containers/sequences
parent896e499e38b34c81430edeb97e837f7f052423ed (diff)
downloadbcm5719-llvm-cb0d20519e9713b7443e1bd2917f75f739ccec8d.tar.gz
bcm5719-llvm-cb0d20519e9713b7443e1bd2917f75f739ccec8d.zip
[libcxx] [test] Strip trailing whitespace. NFC.
llvm-svn: 334676
Diffstat (limited to 'libcxx/test/std/containers/sequences')
-rw-r--r--libcxx/test/std/containers/sequences/deque/deque.cons/deduct.fail.cpp2
-rw-r--r--libcxx/test/std/containers/sequences/deque/deque.cons/deduct.pass.cpp4
-rw-r--r--libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/deduct.fail.cpp2
-rw-r--r--libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/deduct.pass.cpp4
-rw-r--r--libcxx/test/std/containers/sequences/list/list.cons/deduct.fail.cpp2
-rw-r--r--libcxx/test/std/containers/sequences/list/list.cons/deduct.pass.cpp4
-rw-r--r--libcxx/test/std/containers/sequences/vector/vector.cons/deduct.fail.cpp2
-rw-r--r--libcxx/test/std/containers/sequences/vector/vector.cons/deduct.pass.cpp4
8 files changed, 12 insertions, 12 deletions
diff --git a/libcxx/test/std/containers/sequences/deque/deque.cons/deduct.fail.cpp b/libcxx/test/std/containers/sequences/deque/deque.cons/deduct.fail.cpp
index 1f3fdbdaef6..61ab9c8421b 100644
--- a/libcxx/test/std/containers/sequences/deque/deque.cons/deduct.fail.cpp
+++ b/libcxx/test/std/containers/sequences/deque/deque.cons/deduct.fail.cpp
@@ -27,7 +27,7 @@
struct A {};
int main()
-{
+{
// Test the explicit deduction guides
// Test the implicit deduction guides
diff --git a/libcxx/test/std/containers/sequences/deque/deque.cons/deduct.pass.cpp b/libcxx/test/std/containers/sequences/deque/deque.cons/deduct.pass.cpp
index 35a913e0ef1..a2ec262f158 100644
--- a/libcxx/test/std/containers/sequences/deque/deque.cons/deduct.pass.cpp
+++ b/libcxx/test/std/containers/sequences/deque/deque.cons/deduct.pass.cpp
@@ -32,7 +32,7 @@ struct A {};
int main()
{
-
+
// Test the explicit deduction guides
{
const int arr[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
@@ -51,7 +51,7 @@ int main()
assert(deq[1] == 1L);
assert(deq[2] == 2L);
}
-
+
// Test the implicit deduction guides
{
diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/deduct.fail.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/deduct.fail.cpp
index 9f0b70460d0..ef5b20ee7b0 100644
--- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/deduct.fail.cpp
+++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/deduct.fail.cpp
@@ -27,7 +27,7 @@
struct A {};
int main()
-{
+{
// Test the explicit deduction guides
// Test the implicit deduction guides
diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/deduct.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/deduct.pass.cpp
index b59bf7e0cd2..c3969a4623e 100644
--- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/deduct.pass.cpp
+++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/deduct.pass.cpp
@@ -32,7 +32,7 @@ struct A {};
int main()
{
-
+
// Test the explicit deduction guides
{
const int arr[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
@@ -52,7 +52,7 @@ int main()
assert(*it++ == 1L);
assert(*it++ == 2L);
}
-
+
// Test the implicit deduction guides
{
diff --git a/libcxx/test/std/containers/sequences/list/list.cons/deduct.fail.cpp b/libcxx/test/std/containers/sequences/list/list.cons/deduct.fail.cpp
index c3709b795d1..5708d73734e 100644
--- a/libcxx/test/std/containers/sequences/list/list.cons/deduct.fail.cpp
+++ b/libcxx/test/std/containers/sequences/list/list.cons/deduct.fail.cpp
@@ -27,7 +27,7 @@
struct A {};
int main()
-{
+{
// Test the explicit deduction guides
// Test the implicit deduction guides
diff --git a/libcxx/test/std/containers/sequences/list/list.cons/deduct.pass.cpp b/libcxx/test/std/containers/sequences/list/list.cons/deduct.pass.cpp
index 66aa37acc83..b8021ef980c 100644
--- a/libcxx/test/std/containers/sequences/list/list.cons/deduct.pass.cpp
+++ b/libcxx/test/std/containers/sequences/list/list.cons/deduct.pass.cpp
@@ -32,7 +32,7 @@ struct A {};
int main()
{
-
+
// Test the explicit deduction guides
{
const int arr[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
@@ -52,7 +52,7 @@ int main()
assert(*it++ == 1L);
assert(*it++ == 2L);
}
-
+
// Test the implicit deduction guides
{
diff --git a/libcxx/test/std/containers/sequences/vector/vector.cons/deduct.fail.cpp b/libcxx/test/std/containers/sequences/vector/vector.cons/deduct.fail.cpp
index 31e66d92d7e..d479800120f 100644
--- a/libcxx/test/std/containers/sequences/vector/vector.cons/deduct.fail.cpp
+++ b/libcxx/test/std/containers/sequences/vector/vector.cons/deduct.fail.cpp
@@ -25,7 +25,7 @@
int main()
-{
+{
// Test the explicit deduction guides
// Test the implicit deduction guides
diff --git a/libcxx/test/std/containers/sequences/vector/vector.cons/deduct.pass.cpp b/libcxx/test/std/containers/sequences/vector/vector.cons/deduct.pass.cpp
index 60392af6fe3..175fede7819 100644
--- a/libcxx/test/std/containers/sequences/vector/vector.cons/deduct.pass.cpp
+++ b/libcxx/test/std/containers/sequences/vector/vector.cons/deduct.pass.cpp
@@ -32,7 +32,7 @@ struct A {};
int main()
{
-
+
// Test the explicit deduction guides
{
const int arr[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
@@ -51,7 +51,7 @@ int main()
assert(vec[1] == 1L);
assert(vec[2] == 2L);
}
-
+
// Test the implicit deduction guides
{
OpenPOWER on IntegriCloud