| 896 | TextFormat::Printer::~Printer() {} |
| 897 | |
| 898 | bool TextFormat::Printer::PrintToString(const Message& message, |
| 899 | string* output) const { |
| 900 | GOOGLE_DCHECK(output) << "output specified is NULL"; |
| 901 | |
| 902 | output->clear(); |
| 903 | io::StringOutputStream output_stream(output); |
| 904 | |
| 905 | bool result = Print(message, &output_stream); |
| 906 | |
| 907 | return result; |
| 908 | } |
| 909 | |
| 910 | bool TextFormat::Printer::PrintUnknownFieldsToString( |
| 911 | const UnknownFieldSet& unknown_fields, |
no test coverage detected