Skip to content

Commit

Permalink
Replace Unicode character U+2018 with 7bit-ASCII (U+0027)
Browse files Browse the repository at this point in the history
  • Loading branch information
t-mat committed Aug 27, 2021
1 parent ba8929a commit b3c51c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xxhash.h
Original file line number Diff line number Diff line change
Expand Up @@ -3769,7 +3769,7 @@ XXH3_initCustomSecret_avx512(void* XXH_RESTRICT customSecret, xxh_u64 seed64)
XXH_ASSERT(((size_t)dest & 63) == 0);
for (i=0; i < nbRounds; ++i) {
/* GCC has a bug, _mm512_stream_load_si512 accepts 'void*', not 'void const*',
* this will warn "discards const qualifier". */
* this will warn "discards 'const' qualifier". */
union {
const __m512i* cp;
void* p;
Expand Down

0 comments on commit b3c51c7

Please sign in to comment.