From 57bdff3f122d5bb97a9ab4d1ddfefeb4b5fa2554 Mon Sep 17 00:00:00 2001 From: Gennaro Prota Date: Tue, 23 Sep 2025 12:38:26 +0200 Subject: [PATCH] Remove an erroneous comment --- test/bitset_test.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/bitset_test.hpp b/test/bitset_test.hpp index 1680c87..3056394 100644 --- a/test/bitset_test.hpp +++ b/test/bitset_test.hpp @@ -1487,8 +1487,6 @@ struct bitset_test } else { if ( ! did_throw ) BOOST_TEST( s.width() == 0 ); - // This test require that os be an output _and_ input stream. - // Of course dynamic_bitset's operator << doesn't require that. size_type total_len = w <= 0 || static_cast< size_type >( w ) < b.size() ? b.size() : static_cast< size_type >( w ); const string_type padding( total_len - b.size(), fill_char );