Skip to content

Commit

Permalink
Parentheses added to clarify expression with a bitwise operation
Browse files Browse the repository at this point in the history
  • Loading branch information
kocotom committed Mar 30, 2024
1 parent 6dd8a45 commit d379897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/partition.cc
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ std::vector<SplitPair> Partition::split_blocks(
// this visited state will be part of the former block
++iter_first;
}
while(repr_marked ^ used_states[get_block_item(iter_last).state]) {
while((repr_marked ^ used_states[get_block_item(iter_last).state])) {
// this visited state will be part of the new block
block_items_[iter_last].block_idx = new_block_idx;
--iter_last;
Expand Down

0 comments on commit d379897

Please sign in to comment.