We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb351a1 commit 7678612Copy full SHA for 7678612
src/core/json/json_value.cc
@@ -47,7 +47,7 @@ JSON::JSON(const bool value) : current_type{Type::Boolean} {
47
this->data_boolean = value;
48
}
49
50
-JSON::JSON(const std::nullptr_t) : current_type{Type::Null} {}
+JSON::JSON(const std::nullptr_t) {}
51
52
JSON::JSON(const String &value) : current_type{Type::String} {
53
new (&this->data_string) String{value};
0 commit comments