| 140 | } |
| 141 | |
| 142 | static void DeleteLuaProfilerScopeStates() |
| 143 | { |
| 144 | while (g_LuaProfilerScopeStates != 0) |
| 145 | { |
| 146 | DeleteLuaProfilerScopeState(g_LuaProfilerScopeStates); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | static bool ShouldRetainLuaProfilerScopeState(LuaProfilerScopeState* state) |
| 151 | { |
no test coverage detected