aboutsummaryrefslogtreecommitdiff
path: root/libphobos/src/std/json.d
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gcc.gnu.org>2019-01-09 23:04:20 +0000
committerIain Buclaw <ibuclaw@gcc.gnu.org>2019-01-09 23:04:20 +0000
commit9fa27ed0884b23d37f2f0b7ee2edd427664aa557 (patch)
treefebf873c1ebf0aa58a9bc85d097f4c2f68a83005 /libphobos/src/std/json.d
parent9ed7e53d8e38694d76de50be2abaa42aa0ca92cd (diff)
downloadgcc-9fa27ed0884b23d37f2f0b7ee2edd427664aa557.zip
gcc-9fa27ed0884b23d37f2f0b7ee2edd427664aa557.tar.gz
gcc-9fa27ed0884b23d37f2f0b7ee2edd427664aa557.tar.bz2
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
Diffstat (limited to 'libphobos/src/std/json.d')
-rw-r--r--libphobos/src/std/json.d8
1 files changed, 0 insertions, 8 deletions
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.