Fixed warnings in idl_gen_go.cpp

This commit is contained in:
aardappel
2019-05-21 18:54:26 -07:00
parent bc240b3004
commit b04736f9bd

View File

@@ -161,7 +161,7 @@ class GoGenerator : public BaseGenerator {
// A single enum member.
void EnumMember(const EnumDef &enum_def, const EnumVal &ev,
const int max_name_length, std::string *code_ptr) {
size_t max_name_length, std::string *code_ptr) {
std::string &code = *code_ptr;
code += "\t";
code += enum_def.name;
@@ -189,7 +189,7 @@ class GoGenerator : public BaseGenerator {
// A single enum name member.
void EnumNameMember(const EnumDef &enum_def, const EnumVal ev,
const int max_name_length, std::string *code_ptr) {
size_t max_name_length, std::string *code_ptr) {
std::string &code = *code_ptr;
code += "\t";
code += enum_def.name;
@@ -229,7 +229,7 @@ class GoGenerator : public BaseGenerator {
// A single enum value member.
void EnumValueMember(const EnumDef &enum_def, const EnumVal ev,
const int max_name_length, std::string *code_ptr) {
size_t max_name_length, std::string *code_ptr) {
std::string &code = *code_ptr;
code += "\t\"";
code += ev.name;
@@ -775,7 +775,7 @@ class GoGenerator : public BaseGenerator {
void GenEnum(const EnumDef &enum_def, std::string *code_ptr) {
if (enum_def.generated) return;
const int max_name_length = MaxNameLength(enum_def);
auto max_name_length = MaxNameLength(enum_def);
cur_name_space_ = enum_def.defined_namespace;
GenComment(enum_def.doc_comment, code_ptr, nullptr);
@@ -989,12 +989,11 @@ class GoGenerator : public BaseGenerator {
const Namespace *CurrentNameSpace() const { return cur_name_space_; }
static int MaxNameLength(const EnumDef &enum_def) {
int max = 0;
static size_t MaxNameLength(const EnumDef &enum_def) {
size_t max = 0;
for (auto it = enum_def.Vals().begin(); it != enum_def.Vals().end();
++it) {
const int length = (*it)->name.length();
max = length > max ? length : max;
max = std::max((*it)->name.length(), max);
}
return max;
}