mirror of
https://github.com/boostorg/dynamic_bitset.git
synced 2026-01-19 04:12:09 +00:00
Remove extra parentheses in the implementation of operator<()
Reason: Consistency.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user