Skip to content

Commit

Permalink
Internal Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 594266511
  • Loading branch information
gribozavr authored and copybara-github committed Dec 28, 2023
1 parent e0b3610 commit b82bb29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/google/protobuf/json/internal/parser_traits.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ struct ParseProto2Descriptor : Proto2Descriptor {
}
}

static void SetInt32(Field f, Msg& msg, int32 x) {
static void SetInt32(Field f, Msg& msg, int32_t x) {
RecordAsSeen(f, msg);
if (f->is_repeated()) {
msg.msg_->GetReflection()->AddInt32(msg.msg_, f, x);
Expand All @@ -182,7 +182,7 @@ struct ParseProto2Descriptor : Proto2Descriptor {
}
}

static void SetUInt32(Field f, Msg& msg, uint32 x) {
static void SetUInt32(Field f, Msg& msg, uint32_t x) {
RecordAsSeen(f, msg);
if (f->is_repeated()) {
msg.msg_->GetReflection()->AddUInt32(msg.msg_, f, x);
Expand Down

0 comments on commit b82bb29

Please sign in to comment.