MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / DeleteLoopTree

Function DeleteLoopTree

src/Chain/libraries/glua/glua_decompile.cpp:384–389  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

382}
383
384void DeleteLoopTree(LoopItem* item) {
385 if (!item) return;
386 DeleteLoopTree(item->child);
387 DeleteLoopTree(item->next);
388 delete item;
389}
390
391IntListItem* NewIntListItem(int v) {
392 auto self = new IntListItem();

Callers 1

DeleteFunctionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected