| 94 | class MPVector { |
| 95 | public: |
| 96 | MPVector() : m_allocated( 0 ), m_size( 0 ), m_buf ( 0 ) {} |
| 97 | ~MPVector() { delete [] m_buf; } |
| 98 | |
| 99 | void clear() { m_size = 0; } // see warning above |
nothing calls this directly
no outgoing calls
no test coverage detected