| 95 | } |
| 96 | |
| 97 | void deallocate() |
| 98 | { |
| 99 | if(owns_buffer && buffer_ != 0) |
| 100 | { |
| 101 | delete[] buffer_; |
| 102 | owns_buffer = false; |
| 103 | buffer_ = 0; |
| 104 | buffer_end_ = 0; |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | public: |
| 109 | /** Default constructor. */ |
nothing calls this directly
no outgoing calls
no test coverage detected