From d76836771fb61943dc44b83c6205b06d13887fa4 Mon Sep 17 00:00:00 2001 From: Nathan Ruiz Date: Thu, 18 Jun 2020 09:55:39 +1000 Subject: [PATCH] Delete nullptr Json::Value constructor --- include/json/value.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/json/value.h b/include/json/value.h index dffc51a85..df1eba6ac 100644 --- a/include/json/value.h +++ b/include/json/value.h @@ -342,6 +342,7 @@ class JSON_API Value { Value(const StaticString& value); Value(const String& value); Value(bool value); + Value(std::nullptr_t ptr) = delete; Value(const Value& other); Value(Value&& other); ~Value();