If I have a huge json object and each json has reference to sub json object.
Is there a way to completly free the huge json object with all it's child json object?
What do you mean with "free"? Deallocate the memory?
Inactive.
Hi there, if I'm reading lots of JSON objects does the memory need to be deallocated?
No, the memory is managed by the internal data structures, which base on std::vector, std::map, and std::string.
Most helpful comment
No, the memory is managed by the internal data structures, which base on
std::vector,std::map, andstd::string.