* @brief Increase the capacity of buffer if new_cap is greater than the * current capacity(). Otherwise, do nothing. */
| 56 | * current capacity(). Otherwise, do nothing. |
| 57 | */ |
| 58 | sonic_force_inline void Reserve(size_t new_cap) { stack_.Reserve(new_cap); } |
| 59 | |
| 60 | /** |
| 61 | * @brief Erases all contexts in the buffer. |
nothing calls this directly
no outgoing calls
no test coverage detected