| 124 | */ |
| 125 | template <typename T> |
| 126 | sonic_force_inline const T* Top() const { |
| 127 | return reinterpret_cast<const T*>(top_ - sizeof(T)); |
| 128 | } |
| 129 | template <typename T> |
| 130 | sonic_force_inline T* Top() { |
| 131 | return reinterpret_cast<T*>(top_ - sizeof(T)); |
nothing calls this directly
no outgoing calls
no test coverage detected