From 4789397194a8011d87de867e4686fea5bbd2c4b7 Mon Sep 17 00:00:00 2001 From: fuqinglin Date: Wed, 30 Nov 2022 05:41:46 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=A4=A7=E6=95=B0=E8=BD=ACSt?= =?UTF-8?q?ring=E9=94=99=E8=AF=AF=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source/BuiltInBasicType.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/BuiltInBasicType.swift b/Source/BuiltInBasicType.swift index 8e44c18..487ebbb 100644 --- a/Source/BuiltInBasicType.swift +++ b/Source/BuiltInBasicType.swift @@ -117,7 +117,8 @@ fileprivate let formatter: NumberFormatter = { let formatter = NumberFormatter() formatter.usesGroupingSeparator = false formatter.numberStyle = .decimal - formatter.maximumFractionDigits = 16 + formatter.maximumFractionDigits = 10 + formatter.maximumIntegerDigits = 20 return formatter }()