From 72f085747e157ba048ef5ebd11f49e54e6c2ab6e Mon Sep 17 00:00:00 2001 From: Jorg Brown Date: Thu, 14 Oct 2021 19:44:18 -0700 Subject: [PATCH] Use int32_t rather than int32. --- src/google/protobuf/compiler/objectivec/objectivec_helpers.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/google/protobuf/compiler/objectivec/objectivec_helpers.h b/src/google/protobuf/compiler/objectivec/objectivec_helpers.h index c5f948c84ee1..13a105240662 100644 --- a/src/google/protobuf/compiler/objectivec/objectivec_helpers.h +++ b/src/google/protobuf/compiler/objectivec/objectivec_helpers.h @@ -263,7 +263,7 @@ class PROTOC_EXPORT TextFormatDecodeData { TextFormatDecodeData(const TextFormatDecodeData&) = delete; TextFormatDecodeData& operator=(const TextFormatDecodeData&) = delete; - void AddString(int32 key, const std::string& input_for_decode, + void AddString(int32_t key, const std::string& input_for_decode, const std::string& desired_output); size_t num_entries() const { return entries_.size(); } std::string Data() const; @@ -272,7 +272,7 @@ class PROTOC_EXPORT TextFormatDecodeData { const std::string& desired_output); private: - typedef std::pair DataEntry; + typedef std::pair DataEntry; std::vector entries_; };