mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
one more place to fix where clang in bsd is more picky than gcc in linux
This commit is contained in:
parent
0376319a93
commit
b0916df825
@ -1161,7 +1161,7 @@ static really_inline
|
||||
void nibUpdate(map<u32, u16> &nib, u32 hi_lo) {
|
||||
u16 hi = hi_lo >> 16;
|
||||
u16 lo = hi_lo & 0xffff;
|
||||
for (const auto pairs : nib) {
|
||||
for (const auto &pairs : nib) {
|
||||
u32 old = pairs.first;
|
||||
if ((old >> 16) == hi || (old & 0xffff) == lo) {
|
||||
if (!nib[old | hi_lo]) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user