aboutsummaryrefslogtreecommitdiff
path: root/libphobos/src/std/json.d
diff options
context:
space:
mode:
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.