| 58 | } |
| 59 | |
| 60 | void CodedOutputData::writeInt32(int32_t value) { |
| 61 | if (value >= 0) { |
| 62 | this->writeRawVarint32(value); |
| 63 | } else { |
| 64 | this->writeRawVarint64(value); |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | void CodedOutputData::writeUInt32(uint32_t value) { |
| 69 | writeRawVarint32(static_cast<int32_t>(value)); |
no test coverage detected