Skip to content

Commit 224c1cf

Browse files
committed
Merge branch 'develop' into experiments/antora
2 parents ad9b1a4 + 6c69d92 commit 224c1cf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/mrdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ exclude-symbols:
1515
- 'boost::detail'
1616
- 'boost::detail::**'
1717
- 'boost::to_string_helper'
18+
- 'boost::dynamic_bitset::bit_appender'
1819
- 'std'
1920
- 'std::**'
2021
# Why does MrDocs pick up ::size_t?

include/boost/dynamic_bitset/dynamic_bitset.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class dynamic_bitset
9191
//! values, excluding any padding bits. Numerically equal to
9292
//! `std::numeric_limits< Block >::digits`.
9393
// -----------------------------------------------------------------------
94-
BOOST_STATIC_CONSTANT( int, bits_per_block = ( std::numeric_limits< Block >::digits ) );
94+
BOOST_STATIC_CONSTANT( int, bits_per_block = std::numeric_limits< Block >::digits );
9595

9696
//! The maximum value of `size_type`.
9797
// -----------------------------------------------------------------------

0 commit comments

Comments
 (0)