From cd68ee4632767238e99442b01531cdec095e0a4a Mon Sep 17 00:00:00 2001 From: Gennaro Prota Date: Tue, 23 Sep 2025 18:31:33 +0200 Subject: [PATCH] Remove two useless comments --- include/boost/dynamic_bitset/impl/dynamic_bitset.ipp | 4 +--- test/bitset_test.hpp | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/include/boost/dynamic_bitset/impl/dynamic_bitset.ipp b/include/boost/dynamic_bitset/impl/dynamic_bitset.ipp index 95c96f8..3de7453 100644 --- a/include/boost/dynamic_bitset/impl/dynamic_bitset.ipp +++ b/include/boost/dynamic_bitset/impl/dynamic_bitset.ipp @@ -2113,9 +2113,7 @@ template< typename Block, typename AllocatorOrContainer > BOOST_DYNAMIC_BITSET_CONSTEXPR20 void dynamic_bitset< Block, AllocatorOrContainer >::init_from_unsigned_long( size_type num_bits, - unsigned long value /*, - const allocator_type & alloc*/ -) + unsigned long value ) { BOOST_ASSERT( m_bits.size() == 0 ); diff --git a/test/bitset_test.hpp b/test/bitset_test.hpp index 6a565e8..cb7a346 100644 --- a/test/bitset_test.hpp +++ b/test/bitset_test.hpp @@ -895,7 +895,6 @@ struct bitset_test } } - // to_string() static void to_string( const Bitset & b ) {