Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-baker committed Dec 3, 2024
1 parent afd71ad commit 0a2e3d2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -464,13 +464,13 @@ function checkBitwiseFragment(
}

let ok = inBounds.get(subgroup_id) ?? true;
ok = ok && (row !== height - 1) && (col !== width - 1);
ok = ok && row !== height - 1 && col !== width - 1;
inBounds.set(subgroup_id, ok);
}
}

let anyInBounds = false;
for (let [key, value] of inBounds) {
for (const [_, value] of inBounds) {
const ok = Boolean(value);
anyInBounds = anyInBounds || ok;
}
Expand Down

0 comments on commit 0a2e3d2

Please sign in to comment.