DlangScience / scid

Scientific library for the D programming language
Boost Software License 1.0
90 stars 31 forks source link

Add static import to scid.nonlinear #52

Closed aleixgg closed 8 years ago

aleixgg commented 8 years ago

There was a missing (static) import of the module std.numeric in the module scid.nonlinear which caused the following DUB warning:

source/scid/nonlinear.d(255,15): Deprecation: module std.numeric is not accessible here, perhaps add 'static import std.numeric;' source/scid/nonlinear.d(255,15): Deprecation: module std.numeric is not accessible here, perhaps add 'static import std.numeric;' source/scid/nonlinear.d(255,15): Deprecation: module std.numeric is not accessible here, perhaps add 'static import std.numeric;' source/scid/nonlinear.d(504,16): Deprecation: module std.numeric is not accessible here, perhaps add 'static import std.numeric;'

9il commented 8 years ago

Thanks!