We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
OncePerTask
1 parent 1a13035 commit 6352c4bCopy full SHA for 6352c4b
Project.toml
@@ -1,7 +1,7 @@
1
name = "Parsers"
2
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
3
authors = ["quinnj <quinn.jacobd@gmail.com>"]
4
-version = "2.8.2"
+version = "2.8.3"
5
6
[deps]
7
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
src/Parsers.jl
@@ -496,7 +496,8 @@ end
496
497
if isdefined(Base, :OncePerTask)
498
const _get_bigint = OncePerTask{BigInt}(() -> BigInt(; nbits=256))
499
- const _get_bigfloats = OncePerTask{BigFloat}(BigFloat)
+ # Note: This uses `() -> BigFloat()` instead of just `BigFloat` for --trim compatibility
500
+ const _get_bigfloats = OncePerTask{BigFloat}(() -> BigFloat())
501
else
502
# N.B This code is not thread safe in the presence of thread migration
503
const BIGINT = BigInt[]
0 commit comments