JuliaArrays / ArrayViews.jl

A Julia package to explore a new system of array views
MIT License
19 stars 18 forks source link

fix Array constructor deprecation warning #62

Closed JaredCrean2 closed 6 years ago

JaredCrean2 commented 6 years ago

Calling similar used to cause a deprecation warning because it used the old array constructor Array(T, dims). This PR changes it to the new array constructor Array{T}(dim).