From e7294bb9bd063266629331925d9e55edd973a2fd Mon Sep 17 00:00:00 2001 From: Geod24 Date: Tue, 20 Aug 2019 17:56:26 +0900 Subject: [PATCH] Clean up std.json deprecation --- source/vibe/core/args.d | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/source/vibe/core/args.d b/source/vibe/core/args.d index d0615d4..79bcb79 100755 --- a/source/vibe/core/args.d +++ b/source/vibe/core/args.d @@ -301,7 +301,13 @@ private void init() private T fromValue(T)(in JSONValue val) { import std.conv : to; - static if (is(T == bool)) return val.type == JSON_TYPE.TRUE; + static if (is(T == bool)) { + // JSONType.TRUE has been deprecated in v2.087.0 + static if (is(typeof(JSONType.true_))) + return val.type == JSONType.true_; + else + return val.type == JSONType.TRUE; + } else static if (is(T : long)) return val.integer.to!T; else static if (is(T : double)) return val.floating.to!T; else static if (is(T == string)) return val.str;