You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In NDK r23, trying to use any of the float-based functions from will result in a compiler error. From looking in the file Sdk\ndk\23.0.7599858\sources\cxx-stl\llvm-libc++\include\charconv, it's clear that this file only contains implementation for the integral types,
At a glance (not sure if I'm reading the enable-ifs correctly) it looks like this is still the case upstream, so this probably requires more than just a libc++ update.
Description
In NDK r23, trying to use any of the float-based functions from will result in a compiler error. From looking in the file
Sdk\ndk\23.0.7599858\sources\cxx-stl\llvm-libc++\include\charconv
, it's clear that this file only contains implementation for the integral types,To clarify more, from the https://en.cppreference.com/w/cpp/utility/to_chars page, the current implementation only contains functions 1 and 2. From the https://en.cppreference.com/w/cpp/utility/from_chars page, the current implementation only contains function 1.
Test case:
Include and try to use any of the float based function:
Environment Details
The text was updated successfully, but these errors were encountered: