Closed jgreener64 closed 6 years ago
My instances of parse(Int, somestring) were replaced with Meta.parse(Int, somestring).
parse(Int, somestring)
Meta.parse(Int, somestring)
I guess this is due to this replacement: https://github.com/JuliaComputing/Deprecations.jl/blob/master/src/database/simple.jl#L391.
But my understanding is that the parse method should not change in this case.
parse
My instances of
parse(Int, somestring)
were replaced withMeta.parse(Int, somestring)
.I guess this is due to this replacement: https://github.com/JuliaComputing/Deprecations.jl/blob/master/src/database/simple.jl#L391.
But my understanding is that the
parse
method should not change in this case.