fastfloat / fast_float

Fast and exact implementation of the C++ from_chars functions for number types: 4x to 10x faster than strtod, part of GCC 12, Chromium and WebKit/Safari
Apache License 2.0
1.35k stars 124 forks source link

Fix for ARM SIMD #230

Closed mayawarrier closed 9 months ago

mayawarrier commented 9 months ago

I think FASTFLOAT_ARM64 is meant to be FASTFLOAT_NEON here.

Without this, FASTFLOAT_HAS_SIMD doesn't get defined for ARM targets, and ARM SIMD doesn't get used in the parser.

lemire commented 9 months ago

Thanks.