Remove a pair of unneeded parentheses

This commit is contained in:
Gennaro Prota
2025-07-22 12:32:04 +02:00
parent 6aafdcf80e
commit 59c40f1978

View File

@@ -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`.
// -----------------------------------------------------------------------