Skip to content

Commit

Permalink
[ci] fix macos-14 clang ci error
Browse files Browse the repository at this point in the history
  • Loading branch information
fangq committed Nov 29, 2024
1 parent 8a8fc5f commit ad080fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mmc_highorder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class Vec3Hash {
std::size_t seed = 3;

for (int i = 0; i < 3; i++) {
seed ^= vec[i] + 0x9e3779b9 + (seed << 6) + (seed >> 2);
seed ^= vec.at(i) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
}

return seed;
Expand Down

0 comments on commit ad080fa

Please sign in to comment.