| 66 | } |
| 67 | |
| 68 | void CodedOutputData::writeUInt32(uint32_t value) { |
| 69 | writeRawVarint32(static_cast<int32_t>(value)); |
| 70 | } |
| 71 | |
| 72 | void CodedOutputData::writeBool(bool value) { |
| 73 | this->writeRawByte(static_cast<uint8_t>(value ? 1 : 0)); |
no outgoing calls
no test coverage detected