| 321 | } |
| 322 | |
| 323 | static const void* StackPop(dmArray<const void*>& table_stack) |
| 324 | { |
| 325 | const void* p = table_stack.Back(); |
| 326 | table_stack.Pop(); |
| 327 | return p; |
| 328 | } |
| 329 | |
| 330 | static bool StackContains(dmArray<const void*>& table_stack, const void* p) |
| 331 | { |
no test coverage detected