From 9fa27ed0884b23d37f2f0b7ee2edd427664aa557 Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Wed, 9 Jan 2019 23:04:20 +0000 Subject: libphobos: Merge phobos upstream b022e552a This removes updates the removal date of all deprecations in phobos. Many of the marked functions have passed their end dates, and are now absent in upstream. Reviewed-on: https://github.com/dlang/phobos/pull/6828 From-SVN: r267788 --- libphobos/src/std/json.d | 8 -------- 1 file changed, 8 deletions(-) (limited to 'libphobos/src/std/json.d') diff --git a/libphobos/src/std/json.d b/libphobos/src/std/json.d index fd6cf41..8ba0f05 100644 --- a/libphobos/src/std/json.d +++ b/libphobos/src/std/json.d @@ -1123,14 +1123,6 @@ if (isInputRange!T && !isInfinite!T && isSomeChar!(ElementEncodingType!T)) return parseJSON!T(json, -1, options); } -deprecated( - "Please use the overload that takes a ref JSONValue rather than a pointer. This overload will " - ~ "be removed in November 2017.") -string toJSON(in JSONValue* root, in bool pretty = false, in JSONOptions options = JSONOptions.none) @safe -{ - return toJSON(*root, pretty, options); -} - /** Takes a tree of JSON values and returns the serialized string. -- cgit v1.1