diff options
| author | filmih <[email protected]> | 2022-02-10 16:49:59 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:59 +0300 | 
| commit | 883c643baf3a1698f0f0a31a8973b61411cd311f (patch) | |
| tree | ab1d02c25264bef4a13b139e1b2acbf520b3fee6 /library/cpp/protobuf/util/pb_io.cpp | |
| parent | 4def7550a4a9107382d501b6fe9bcfcc3d765229 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/protobuf/util/pb_io.cpp')
| -rw-r--r-- | library/cpp/protobuf/util/pb_io.cpp | 24 | 
1 files changed, 12 insertions, 12 deletions
| diff --git a/library/cpp/protobuf/util/pb_io.cpp b/library/cpp/protobuf/util/pb_io.cpp index 6270ee06243..bbedfa16fa6 100644 --- a/library/cpp/protobuf/util/pb_io.cpp +++ b/library/cpp/protobuf/util/pb_io.cpp @@ -118,18 +118,18 @@ void SerializeToTextFormatWithEnumId(const NProtoBuf::Message& m, IOutputStream&      }  } -void SerializeToTextFormatPretty(const NProtoBuf::Message& m, IOutputStream& out) { -    google::protobuf::TextFormat::Printer printer; -    printer.SetUseUtf8StringEscaping(true); -    printer.SetUseShortRepeatedPrimitives(true); - -    NProtoBuf::io::TCopyingOutputStreamAdaptor adaptor(&out); - -    if (!printer.Print(m, &adaptor)) { -         ythrow yexception() << "SerializeToTextFormatPretty failed on Print"; -    } -} - +void SerializeToTextFormatPretty(const NProtoBuf::Message& m, IOutputStream& out) {  +    google::protobuf::TextFormat::Printer printer;  +    printer.SetUseUtf8StringEscaping(true);  +    printer.SetUseShortRepeatedPrimitives(true);  +  +    NProtoBuf::io::TCopyingOutputStreamAdaptor adaptor(&out);  +  +    if (!printer.Print(m, &adaptor)) {  +         ythrow yexception() << "SerializeToTextFormatPretty failed on Print";  +    }  +}  +   static void ConfigureParser(const EParseFromTextFormatOptions options,                              NProtoBuf::TextFormat::Parser& p) {      if (options & EParseFromTextFormatOption::AllowUnknownField) { | 
