diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2016-12-06 01:14:06 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2016-12-06 01:14:06 +0000 |
commit | fe4ca8c5398524b3fc1aa1225bf2ddd57ae4f2ca (patch) | |
tree | 5c117b4ca5ea2ab09924a9b103be2db18a18de4d /libcxx/test/std/utilities/template.bitset/bitset.operators/op_not.pass.cpp | |
parent | e9c728899f2b0f59b17c11ac146f16483a521c59 (diff) | |
download | bcm5719-llvm-fe4ca8c5398524b3fc1aa1225bf2ddd57ae4f2ca.tar.gz bcm5719-llvm-fe4ca8c5398524b3fc1aa1225bf2ddd57ae4f2ca.zip |
[libcxx] [test] D27266: Remove spurious semicolons.
llvm-svn: 288750
Diffstat (limited to 'libcxx/test/std/utilities/template.bitset/bitset.operators/op_not.pass.cpp')
-rw-r--r-- | libcxx/test/std/utilities/template.bitset/bitset.operators/op_not.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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() |