Codechange: Use EnumBitSet.Any(). (#13512)

This commit is contained in:
Peter Nelson
2025-02-09 20:16:16 +00:00
committed by GitHub
parent 86841ba1f0
commit 1ed685b5c1
3 changed files with 8 additions and 8 deletions

View File

@@ -546,7 +546,7 @@ no_entry_cost: // jump here at the beginning if the node has no parent (it is th
}
/* Any other reason bit set? */
if (end_segment_reason != EndSegmentReasons{}) {
if (end_segment_reason.Any()) {
break;
}