From 9e300f18ef3fa486e266b71e44d0930fe003960b Mon Sep 17 00:00:00 2001 From: Protobuf Team Bot Date: Fri, 25 Aug 2023 14:35:29 -0700 Subject: [PATCH] Internal change. PiperOrigin-RevId: 560197662 --- src/google/protobuf/parse_context.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/google/protobuf/parse_context.h b/src/google/protobuf/parse_context.h index 3506d38915..47896cd75a 100644 --- a/src/google/protobuf/parse_context.h +++ b/src/google/protobuf/parse_context.h @@ -429,8 +429,8 @@ class PROTOBUF_EXPORT EpsCopyInputStream { // AppendUntilEnd appends data until a limit (either a PushLimit or end of // stream. Normal payloads are from length delimited fields which have an // explicit size. Reading until limit only comes when the string takes - // the place of a protobuf, ie RawMessage/StringRawMessage, lazy fields and - // implicit weak messages. We keep these methods private and friend them. + // the place of a protobuf, ie RawMessage, lazy fields and implicit weak + // messages. We keep these methods private and friend them. template const char* AppendUntilEnd(const char* ptr, const A& append) { if (ptr - buffer_end_ > limit_) return nullptr;