Skip to content

Commit

Permalink
Use int32_t rather than int32.
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgbrown committed Oct 15, 2021
1 parent 6bc21b5 commit 72f0857
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/google/protobuf/compiler/objectivec/objectivec_helpers.h
Expand Up @@ -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;
Expand All @@ -272,7 +272,7 @@ class PROTOC_EXPORT TextFormatDecodeData {
const std::string& desired_output);

private:
typedef std::pair<int32, std::string> DataEntry;
typedef std::pair<int32_t, std::string> DataEntry;
std::vector<DataEntry> entries_;
};

Expand Down

0 comments on commit 72f0857

Please sign in to comment.