Skip to content

Commit

Permalink
Hopefully, fix CityHash on MSVC=1, PLATFORM=x86
Browse files Browse the repository at this point in the history
  • Loading branch information
darkk committed Aug 29, 2024
1 parent 2be0c74 commit 40123d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion City.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ uint128 CityHash128(const char *s, size_t len) {
: CityHash128WithSeed(s, len, uint128(k0, k1));
}

#ifdef __SSE4_2__
#if defined(__SSE4_2__) && defined(__x86_64__)
#include "CityCrc.h"
#include <nmmintrin.h>

Expand Down

0 comments on commit 40123d6

Please sign in to comment.