[libcxx-commits] [libcxx] [libc++] Complete `<charconv>` for 64-bit `long double` platforms (PR #117125)

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Thu Nov 28 11:36:53 PST 2024


================
@@ -317,7 +317,11 @@ auto all_unsigned = type_list<
     >();
 auto integrals = concat(all_signed, all_unsigned);
 
-auto all_floats = type_list< float, double >(); //TODO: Add long double
+#ifdef TEST_LONG_DOUBLE_IS_DOUBLE // TODO: Remove this condition when the implementation for long double is complete.
----------------
ldionne wrote:

This must be defined in `test_macros.h`!

https://github.com/llvm/llvm-project/pull/117125


More information about the libcxx-commits mailing list