mirror of
https://github.com/ziglang/zig.git
synced 2026-02-01 12:13:44 +00:00
stage1: Remove stray brace in rarely-tested code path
This should fix #7614 or part of it.
This commit is contained in:
parent
707b81ec37
commit
102e45e04f
@ -48,7 +48,6 @@ static inline int ctzll(unsigned long long mask) {
|
||||
#else
|
||||
if (_BitScanForward(&result, mask & 0xffffffff))
|
||||
return result;
|
||||
}
|
||||
if (_BitScanForward(&result, mask >> 32))
|
||||
return 32 + result;
|
||||
zig_unreachable();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user