diff --git a/src/google/protobuf/parse_context.h b/src/google/protobuf/parse_context.h index 45c89cd656..194b0017dc 100644 --- a/src/google/protobuf/parse_context.h +++ b/src/google/protobuf/parse_context.h @@ -997,8 +997,8 @@ RotRight7AndReplaceLowByte(uint64_t res, const char& byte) { return res; }; -inline PROTOBUF_ALWAYS_INLINE -const char* ReadTagInlined(const char* ptr, uint32_t* out) { +inline PROTOBUF_ALWAYS_INLINE const char* ReadTagInlined(const char* ptr, + uint32_t* out) { uint64_t res = 0xFF & ptr[0]; if (PROTOBUF_PREDICT_FALSE(res >= 128)) { res = RotRight7AndReplaceLowByte(res, ptr[1]);