[libcxx-commits] [libcxx] [libc++] LWG2381: Inconsistency in parsing floating point numbers (PR #77948)
A. Jiang via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jan 12 17:36:11 PST 2024
================
@@ -366,9 +366,11 @@ _LIBCPP_HIDE_FROM_ABI _ForwardIterator __scan_keyword(
struct _LIBCPP_EXPORTED_FROM_ABI __num_get_base {
static const int __num_get_buf_sz = 40;
+ static const size_t __int_chr_cnt = 26;
+ static const size_t __fp_chr_cnt = 28;
----------------
frederick-vs-ja wrote:
Added.
https://github.com/llvm/llvm-project/pull/77948
More information about the libcxx-commits
mailing list