| 59 | uint8 Stack[15]; |
| 60 | |
| 61 | FORCE_INLINE void Push(ProfilerMemory::Groups group) |
| 62 | { |
| 63 | if (Count < ARRAY_COUNT(Stack)) |
| 64 | Count++; |
| 65 | Stack[Count - 1] = (uint8)group; |
| 66 | } |
| 67 | |
| 68 | FORCE_INLINE void Pop() |
| 69 | { |
no outgoing calls
no test coverage detected