Skip to content

Commit 9629f8f

Browse files
Auto-generate files after cl/725760779
1 parent ff8bd84 commit 9629f8f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

php/ext/google/protobuf/php-upb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11680,7 +11680,7 @@ static const upb_tabent* upb_getentry(const upb_table* t, uint32_t hash) {
1168011680
return t->entries + (hash & t->mask);
1168111681
}
1168211682

11683-
static bool upb_arrhas(upb_tabval key) { return key.val != (uint64_t)-1; }
11683+
static bool upb_arrhas(upb_tabval val) { return val.val != (uint64_t)-1; }
1168411684

1168511685
static bool isfull(upb_table* t) { return t->count == t->max_count; }
1168611686

ruby/ext/google/protobuf_c/ruby-upb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11156,7 +11156,7 @@ static const upb_tabent* upb_getentry(const upb_table* t, uint32_t hash) {
1115611156
return t->entries + (hash & t->mask);
1115711157
}
1115811158

11159-
static bool upb_arrhas(upb_tabval key) { return key.val != (uint64_t)-1; }
11159+
static bool upb_arrhas(upb_tabval val) { return val.val != (uint64_t)-1; }
1116011160

1116111161
static bool isfull(upb_table* t) { return t->count == t->max_count; }
1116211162

0 commit comments

Comments
 (0)