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

simple_decimal_conversion.h can be deleted #195

Closed nigeltao closed 1 year ago

nigeltao commented 1 year ago

include/fast_float/simple_decimal_conversion.h looks like it's no longer used (and can be deleted), as of commit fc0c8680a55a6e9cdd8934df366c43d9e051aa3c "Implement the big-integer arithmetic algorithm".

In fact, it no longer even compiles, since it refers to a struct decimal type, whose definition was deleted in that commit.

lemire commented 1 year ago

Thank you!!!