mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-06 16:56:57 +08:00
Fix Werrors
This commit is contained in:
parent
38613a39f9
commit
064d2b832d
@ -68,7 +68,9 @@ uint64_t read8_to_u64(const UC *chars) {
|
||||
|
||||
fastfloat_really_inline
|
||||
uint64_t simd_read8_to_u64(const __m128i data) {
|
||||
return _mm_cvtsi128_si64x(_mm_packus_epi16(data, data));
|
||||
FASTFLOAT_SIMD_DISABLE_WARNINGS
|
||||
return uint64_t(_mm_cvtsi128_si64x(_mm_packus_epi16(data, data)));
|
||||
FASTFLOAT_SIMD_RESTORE_WARNINGS
|
||||
}
|
||||
|
||||
fastfloat_really_inline
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user