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, Redis and WebKit/Safari
Apache License 2.0
1.54k stars 132 forks source link

Include intrin.h for __umulh #260

Closed LeszekSwirski closed 2 months ago

LeszekSwirski commented 2 months ago

Arm64 uses __umulh, so add the same condition for including the intrin.h header.

This was failing when trying to pull fast_float into Chromium (https://ci.chromium.org/ui/p/chromium/builders/try/win-arm64-compile-dbg/131424/overview)

lemire commented 2 months ago

Merging. I will issue a patch release.

lemire commented 2 months ago

@LeszekSwirski Patch release out!

LeszekSwirski commented 2 months ago

Thanks for the fast turnaround!