[libcxx-commits] [PATCH] D125704: [libc++] Make to_chars base 10 header only.
Nikolas Klauser via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon May 16 10:35:35 PDT 2022
philnik added inline comments.
================
Comment at: libcxx/include/charconv:108-111
-namespace __itoa {
-_LIBCPP_AVAILABILITY_TO_CHARS _LIBCPP_FUNC_VIS char* __u64toa(uint64_t __value, char* __buffer) noexcept;
-_LIBCPP_AVAILABILITY_TO_CHARS _LIBCPP_FUNC_VIS char* __u32toa(uint32_t __value, char* __buffer) noexcept;
-} // namespace __itoa
----------------
Since we have to keep the functions in the dylib forever anyways, why not use them?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D125704/new/
https://reviews.llvm.org/D125704
More information about the libcxx-commits
mailing list