From 4ca26518ec5aa37852e1df99deb994cf771df162 Mon Sep 17 00:00:00 2001 From: Gennaro Prota Date: Fri, 12 Sep 2025 11:41:26 +0200 Subject: [PATCH] Add a missing comment --- test/dyn_bitset_unit_tests1.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/dyn_bitset_unit_tests1.cpp b/test/dyn_bitset_unit_tests1.cpp index 3d4e0e9..80b0252 100644 --- a/test/dyn_bitset_unit_tests1.cpp +++ b/test/dyn_bitset_unit_tests1.cpp @@ -583,6 +583,8 @@ run_test_cases() bit_vec[ i ] = long_string[ n - 1 - i ] == '0' ? 0 : 1; Tests::at( b, bit_vec ); } + //===================================================================== + // Test max_size #if ! defined( BOOST_NO_CXX11_ALLOCATOR ) { typedef boost::dynamic_bitset< Block, minimal_allocator< Block > > Bitset;