Skip to content

Commit

Permalink
fix small bug (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlaiseMuhirwa authored Jun 5, 2024
1 parent d54fedf commit b7279d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flatnav/util/SimdBaseTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ struct simd128bit {
#endif
}

bool operator=(const simd128bit &other) {
bool operator==(const simd128bit &other) {
const __m128i eq = _mm_cmpeq_epi32(_int, other._int);
return _mm_movemask_epi8(eq) == 0xffffU;
}
Expand Down

0 comments on commit b7279d5

Please # to comment.