summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/utilities
diff options
context:
space:
mode:
authorStephan T. Lavavej <stl@exchange.microsoft.com>2016-12-06 01:14:06 +0000
committerStephan T. Lavavej <stl@exchange.microsoft.com>2016-12-06 01:14:06 +0000
commitfe4ca8c5398524b3fc1aa1225bf2ddd57ae4f2ca (patch)
tree5c117b4ca5ea2ab09924a9b103be2db18a18de4d /libcxx/test/std/utilities
parente9c728899f2b0f59b17c11ac146f16483a521c59 (diff)
downloadbcm5719-llvm-fe4ca8c5398524b3fc1aa1225bf2ddd57ae4f2ca.tar.gz
bcm5719-llvm-fe4ca8c5398524b3fc1aa1225bf2ddd57ae4f2ca.zip
[libcxx] [test] D27266: Remove spurious semicolons.
llvm-svn: 288750
Diffstat (limited to 'libcxx/test/std/utilities')
-rw-r--r--libcxx/test/std/utilities/template.bitset/bitset.operators/op_and.pass.cpp2
-rw-r--r--libcxx/test/std/utilities/template.bitset/bitset.operators/op_not.pass.cpp2
-rw-r--r--libcxx/test/std/utilities/template.bitset/bitset.operators/op_or.pass.cpp2
-rw-r--r--libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/test/std/utilities/template.bitset/bitset.operators/op_and.pass.cpp b/libcxx/test/std/utilities/template.bitset/bitset.operators/op_and.pass.cpp
index 80792d919cc..d86a10c6df1 100644
--- a/libcxx/test/std/utilities/template.bitset/bitset.operators/op_and.pass.cpp
+++ b/libcxx/test/std/utilities/template.bitset/bitset.operators/op_and.pass.cpp
@@ -33,7 +33,7 @@ void test_op_and()
std::bitset<N> v1 = make_bitset<N>();
std::bitset<N> v2 = make_bitset<N>();
std::bitset<N> v3 = v1;
- assert((v1 & v2) == (v3 &= v2));;
+ assert((v1 & v2) == (v3 &= v2));
}
int main()
diff --git a/libcxx/test/std/utilities/template.bitset/bitset.operators/op_not.pass.cpp b/libcxx/test/std/utilities/template.bitset/bitset.operators/op_not.pass.cpp
index 65a7004acb8..0a8024d5eb9 100644
--- a/libcxx/test/std/utilities/template.bitset/bitset.operators/op_not.pass.cpp
+++ b/libcxx/test/std/utilities/template.bitset/bitset.operators/op_not.pass.cpp
@@ -33,7 +33,7 @@ void test_op_not()
std::bitset<N> v1 = make_bitset<N>();
std::bitset<N> v2 = make_bitset<N>();
std::bitset<N> v3 = v1;
- assert((v1 ^ v2) == (v3 ^= v2));;
+ assert((v1 ^ v2) == (v3 ^= v2));
}
int main()
diff --git a/libcxx/test/std/utilities/template.bitset/bitset.operators/op_or.pass.cpp b/libcxx/test/std/utilities/template.bitset/bitset.operators/op_or.pass.cpp
index dcabaa4a9a4..449115edd75 100644
--- a/libcxx/test/std/utilities/template.bitset/bitset.operators/op_or.pass.cpp
+++ b/libcxx/test/std/utilities/template.bitset/bitset.operators/op_or.pass.cpp
@@ -33,7 +33,7 @@ void test_op_or()
std::bitset<N> v1 = make_bitset<N>();
std::bitset<N> v2 = make_bitset<N>();
std::bitset<N> v3 = v1;
- assert((v1 | v2) == (v3 |= v2));;
+ assert((v1 | v2) == (v3 |= v2));
}
int main()
diff --git a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp
index 58df2df7679..9c2d992b8e4 100644
--- a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp
+++ b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp
@@ -19,7 +19,7 @@
#include <tuple>
-template <class T> void cref(T const&) {};
+template <class T> void cref(T const&) {}
template <class T> void cref(T const&&) = delete;
std::tuple<int> const tup4() { return std::make_tuple(4); }
OpenPOWER on IntegriCloud