| 852 | } |
| 853 | |
| 854 | static void ExampleTree_DestroyNode(ExampleTreeNode* node) |
| 855 | { |
| 856 | for (ExampleTreeNode* child_node : node->Childs) |
| 857 | ExampleTree_DestroyNode(child_node); |
| 858 | IM_DELETE(node); |
| 859 | } |
| 860 | |
| 861 | // Create example tree data |
| 862 | // (warning: this can allocates MANY MANY more times than other code in all of Dear ImGui + demo combined) |
no test coverage detected