You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using DoubleFloats, the following message appears
WARNING: Method definition string(DoubleFloats.DoubleFloat{T}) where {T<:Union{Float16, Float32, Float64}} in module DoubleFloats at DoubleFloats\Oh3Yw\src\type\string.jl:16 overwritten at DoubleFloats\Oh3Yw\src\type\string.jl:1.
** incremental compilation may be fatally broken for this module **
The reason is that in file src/type/string.jl, two implementations of the same function are present:
function string(x::DoubleFloat{T}) where {T<:IEEEFloat} # line 1
xxx
function string(x::DoubleFloat{T}) where {T<:IEEEFloat} # line 16
xxx
The text was updated successfully, but these errors were encountered:
When using DoubleFloats, the following message appears
The reason is that in file src/type/string.jl, two implementations of the same function are present:
The text was updated successfully, but these errors were encountered: