mirror of
https://github.com/boostorg/dynamic_bitset.git
synced 2026-01-19 04:12:09 +00:00
Remove a pair of unneeded parentheses
This commit is contained in:
@@ -91,7 +91,7 @@ public:
|
||||
//! values, excluding any padding bits. Numerically equal to
|
||||
//! `std::numeric_limits< Block >::digits`.
|
||||
// -----------------------------------------------------------------------
|
||||
BOOST_STATIC_CONSTANT( int, bits_per_block = ( std::numeric_limits< Block >::digits ) );
|
||||
BOOST_STATIC_CONSTANT( int, bits_per_block = std::numeric_limits< Block >::digits );
|
||||
|
||||
//! The maximum value of `size_type`.
|
||||
// -----------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user