diff options
Diffstat (limited to 'libcxx/test/std/utilities/template.bitset/bitset.operators/op_and.pass.cpp')
-rw-r--r-- | libcxx/test/std/utilities/template.bitset/bitset.operators/op_and.pass.cpp | 2 |
1 files changed, 1 insertions, 1 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() |