| 74 | } |
| 75 | |
| 76 | void CodedOutputData::writeData(const MMBuffer &value) { |
| 77 | this->writeRawVarint32((int32_t) value.length()); |
| 78 | this->writeRawData(value); |
| 79 | } |
| 80 | |
| 81 | void CodedOutputData::writeString(const string &value) { |
| 82 | size_t numberOfBytes = value.size(); |
no test coverage detected