| 98 | } |
| 99 | |
| 100 | void CodedOutputData::seek(size_t addedSize) { |
| 101 | m_position += addedSize; |
| 102 | |
| 103 | if (m_position > m_size) { |
| 104 | throw out_of_range("OutOfSpace"); |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | void CodedOutputData::reset() { |
| 109 | m_position = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected