This commit is contained in:
Xuan Son Nguyen
2026-08-22 10:28:04 +02:00
parent b89d589040
commit ad32502d14
3 changed files with 13 additions and 16 deletions
+2 -2
View File
@@ -172,8 +172,8 @@ COMMON_JSON_VEC(common_json)
common_json_value::common_json_value(std::initializer_list<common_json_item> items) :
type(VAL_JSON), val_json(std::make_shared<common_json>(items)) {}
// null, same as the backing library. operator[] turns it into an object,
// push_back() into an array
// null, same as the backing library
// operator[] turns it into an object, push_back() into an array
common_json::common_json() {
new (storage) ordered_json();
}