@brief Pop top of stack (must not be empty). */
| 1176 | |
| 1177 | /** @brief Pop top of stack (must not be empty). */ |
| 1178 | MEM_NO_INSTRUMENT const char *pop() |
| 1179 | { |
| 1180 | if (_offset == 0) |
| 1181 | return nullptr; |
| 1182 | |
| 1183 | auto v = _stack[--_offset]; |
| 1184 | _stackId -= size_t(v); |
| 1185 | return v; |
| 1186 | } |
| 1187 | |
| 1188 | /** @return Current stack depth. */ |
| 1189 | MEM_NO_INSTRUMENT unsigned depth() const |
no outgoing calls
no test coverage detected