JuliaComputing / Deprecations.jl

A database of julia deprecations and how to fix them
Other
17 stars 7 forks source link

parse erroneously replaced by Meta.parse #49

Closed jgreener64 closed 6 years ago

jgreener64 commented 6 years ago

My instances of parse(Int, somestring) were replaced with 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.