Am 28.03.2017 um 14:09 schrieb Naranjah:

On Fri, 03 Feb 2017 14:11:01 GMT, Naranjah wrote:

On Wed, 25 Jan 2017 13:49:44 +0100, Sönke Ludwig wrote:

Am 22.01.2017 um 05:32 schrieb John More:

Installed latest version of dmd and dub. What happened??

source/app.d(1844,15): Deprecation: vibe.inet.path.canFind is not visible from module app
source/app.d(2044,11): Deprecation: vibe.core.args.array is not visible from module app
source/app.d(2044,17): Deprecation: vibe.core.args.map is not visible from module app
source/app.d(2094,11): Deprecation: vibe.core.args.array is not visible from module app
source/app.d(2094,17): Deprecation: vibe.core.args.map is not visible from module app
source/app.d(2165,12): Deprecation: vibe.core.args.array is not visible from module app
source/app.d(2165,18): Deprecation: vibe.core.args.map is not visible from module app
source/devices.d(49,14): Deprecation: vibe.core.args.array is not visible from module devices
source/devices.d(49,20): Deprecation: vibe.core.args.map is not visible from module devices
source/validation.d(154,43): Deprecation: vibe.db.redis.redis.Nullable is not visible from module validation

DMD recently got some stricter visibility checking and it's very likely
that those symbols were previously just available by accident. Importing
std.array : array and std.algorithm.iteration : map should fix the
warnings.

Hey I've imported std.array : array and std.algorithm.iteration : map and unfortunately nothing has happened. Im still getting exactly the same error. Any idea how to fix it? Thanks

Anyone? :(


http://sommarbandyskolan.se

Did you also try the import std.algorithm.searching : canFind; (or
instead of the individual imports, just import std.algorithm;)?
Alternatively, you could send me the project in private by e-mail, it
should be a very quick fix.