| 270 | } |
| 271 | |
| 272 | bool MessageLite::AppendToString(string* output) const { |
| 273 | GOOGLE_DCHECK(IsInitialized()) << InitializationErrorMessage("serialize", *this); |
| 274 | return AppendPartialToString(output); |
| 275 | } |
| 276 | |
| 277 | bool MessageLite::AppendPartialToString(string* output) const { |
| 278 | int old_size = output->size(); |
no test coverage detected