MCPcopy Create free account
hub / github.com/OpenDriveLab/OpenLane / deallocate

Method deallocate

eval/CIPO_evaluation/common/gason.cpp:65–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63}
64
65void JsonAllocator::deallocate() {
66 while (head) {
67 Zone *next = head->next;
68 free(head);
69 head = next;
70 }
71}
72
73static inline bool isspace(char c) {
74 return c == ' ' || (c >= '\t' && c <= '\r');

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected