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.
2 parents 8706c50 + b4cc725 commit 49c1944Copy full SHA for 49c1944
src/type/parse.jl
@@ -7,7 +7,7 @@
7
end
8
9
macro df64_str(val::AbstractString)
10
- :(Double64($val))
+ Double64(val)
11
12
13
@inline function Double32(str::S) where {S<:AbstractString}
@@ -19,7 +19,7 @@ end
19
20
21
macro df32_str(val::AbstractString)
22
- :(Double32($val))
+ Double32(val)
23
24
25
@inline function Double16(str::S) where {S<:AbstractString}
@@ -31,7 +31,7 @@ end
31
32
33
macro df16_str(val::AbstractString)
34
- :(Double16($val))
+ Double16(val)
35
36
37
function tryparse(::Type{DoubleFloat{Float64}}, str::S; base::Int=10) where {S<:AbstractString}
0 commit comments