aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/protobuf/util/pb_io.h
diff options
context:
space:
mode:
authorulanovgeorgiy <ulanovgeorgiy@yandex-team.com>2023-02-10 15:58:09 +0300
committerulanovgeorgiy <ulanovgeorgiy@yandex-team.com>2023-02-10 15:58:09 +0300
commit6f49b8de56ec7992e8d93b5b4c0807cb28caa549 (patch)
tree0bbafefddedaca9ae6bd7ec7105b05563984894f /library/cpp/protobuf/util/pb_io.h
parent17cd71adfa9b6b26efa7e5dee5810d471601b818 (diff)
downloadydb-6f49b8de56ec7992e8d93b5b4c0807cb28caa549.tar.gz
remove flag ForceWriteParsingErrorsToCerr
Diffstat (limited to 'library/cpp/protobuf/util/pb_io.h')
-rw-r--r--library/cpp/protobuf/util/pb_io.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/library/cpp/protobuf/util/pb_io.h b/library/cpp/protobuf/util/pb_io.h
index fbce966ebe..b4a0c654b3 100644
--- a/library/cpp/protobuf/util/pb_io.h
+++ b/library/cpp/protobuf/util/pb_io.h
@@ -58,9 +58,7 @@ void SerializeToTextFormatWithEnumId(const NProtoBuf::Message& m, IOutputStream&
enum class EParseFromTextFormatOption : ui64 {
// Unknown fields will be ignored by the parser
- AllowUnknownField = 1,
- // Error message will be written to stderr in the original format
- ForceWriteParsingErrorsToCerr = 2
+ AllowUnknownField = 1
};
Y_DECLARE_FLAGS(EParseFromTextFormatOptions, EParseFromTextFormatOption);