| 39 | } |
| 40 | |
| 41 | void CodedInputData::seek(size_t addedSize) { |
| 42 | if (m_position + addedSize > m_size) { |
| 43 | throw out_of_range("OutOfSpace"); |
| 44 | } |
| 45 | m_position += addedSize; |
| 46 | } |
| 47 | |
| 48 | double CodedInputData::readDouble() { |
| 49 | return Int64ToFloat64(this->readRawLittleEndian64()); |
no outgoing calls
no test coverage detected