mirror of
https://github.com/boostorg/dynamic_bitset.git
synced 2026-01-19 04:12:09 +00:00
Remove superfluous parentheses in a return statement
This commit is contained in:
@@ -1187,7 +1187,7 @@ struct bitset_test
|
||||
return false;
|
||||
// if (a[i] = b[j]) skip to next
|
||||
}
|
||||
return ( a.size() < b.size() );
|
||||
return a.size() < b.size();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user