uint64_t instead of uint32_t

This commit is contained in:
dc-dc-dc 2023-12-18 17:07:37 -05:00
parent c432de8013
commit 60132a16de

View File

@ -94,7 +94,7 @@ class JSONNode {
JSONObject* object; JSONObject* object;
JSONList* list; JSONList* list;
std::string* s; std::string* s;
uint32_t f; uint64_t f;
} _values; } _values;
Type _type; Type _type;
}; };