Auto-generate files after cl/629226391

pull/16630/head
Protobuf Team Bot 7 months ago
parent 208cae7fd7
commit 6d33efeefe
  1. 5
      php/ext/google/protobuf/php-upb.c
  2. 5
      ruby/ext/google/protobuf_c/ruby-upb.c

@ -14203,6 +14203,11 @@ static void _upb_FieldDef_Create(upb_DefBuilder* ctx, const char* prefix,
f->full_name, (int)f->type_);
}
}
} else {
if (syntax == kUpb_Syntax_Editions) {
_upb_DefBuilder_Errf(ctx, "Editions proto cannot lack type for field %s",
f->full_name);
}
}
if (!has_type && has_type_name) {

@ -13696,6 +13696,11 @@ static void _upb_FieldDef_Create(upb_DefBuilder* ctx, const char* prefix,
f->full_name, (int)f->type_);
}
}
} else {
if (syntax == kUpb_Syntax_Editions) {
_upb_DefBuilder_Errf(ctx, "Editions proto cannot lack type for field %s",
f->full_name);
}
}
if (!has_type && has_type_name) {

Loading…
Cancel
Save