| 44 | T* begin() { return m_ptr; } |
| 45 | const T* begin() const { return m_ptr; } |
| 46 | T* end() { return m_write; } |
| 47 | const T* end() const { return m_write; } |
| 48 | |
| 49 | T& front() { assert( !empty() ); return m_ptr[0]; } |
no outgoing calls
no test coverage detected