Remove extra parentheses in the implementation of operator<()

Reason: Consistency.
This commit is contained in:
Gennaro Prota
2025-09-15 19:05:55 +02:00
parent fa3cef5485
commit 11088d0d80

View File

@@ -1510,7 +1510,7 @@ operator<( const dynamic_bitset< Block, AllocatorOrContainer > & a, const dynami
return false;
}
}
return ( a.size() < b.size() );
return a.size() < b.size();
}
}