MCPcopy Create free account
hub / github.com/WheretIB/nullc / ~ChunkedStackPool

Method ~ChunkedStackPool

NULLC/Pool.h:14–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12 size = chunkSize;
13 }
14 ~ChunkedStackPool()
15 {
16 while(first)
17 {
18 StackChunk *next = first->next;
19 NULLC::dealloc(first);
20 first = next;
21 }
22 curr = first = NULL;
23 size = chunkSize;
24 }
25
26 void Clear()
27 {

Callers 5

CallbackResetFunction · 0.45
~CompilerMethod · 0.45
ParseResetFunction · 0.45
resetMethod · 0.45
ResetNodesMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected