| 6 | json_t* PoolAlloc(jsonPool_t* Pool); |
| 7 | |
| 8 | JsonAllocator::JsonAllocator() |
| 9 | : jsonPool_t { |
| 10 | .init = FEX::JSON::PoolInit, |
| 11 | .alloc = FEX::JSON::PoolAlloc, |
| 12 | } {} |
| 13 | |
| 14 | json_t* PoolInit(jsonPool_t* Pool) { |
| 15 | JsonAllocator* alloc = static_cast<JsonAllocator*>(Pool); |
nothing calls this directly
no outgoing calls
no test coverage detected