From 9db5b11c9cf2922435b53495b9c1e114525f0428 Mon Sep 17 00:00:00 2001 From: Chris Kennelly Date: Tue, 24 Jan 2017 17:37:33 -0800 Subject: Work with truncated tag numbers. This allows more compact comparisons (1 byte instead of 4 byte immediates on x86) for each possible wire/tag inside each field. --- src/google/protobuf/field_mask.pb.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/google/protobuf/field_mask.pb.cc') diff --git a/src/google/protobuf/field_mask.pb.cc b/src/google/protobuf/field_mask.pb.cc index 512feb50..dc639e42 100644 --- a/src/google/protobuf/field_mask.pb.cc +++ b/src/google/protobuf/field_mask.pb.cc @@ -192,7 +192,8 @@ bool FieldMask::MergePartialFromCodedStream( switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // repeated string paths = 1; case 1: { - if (tag == 10u) { + if (static_cast<::google::protobuf::uint8>(tag) == + static_cast<::google::protobuf::uint8>(10u)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->add_paths())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( -- cgit v1.2.3