summaryrefslogtreecommitdiff
path: root/src/upb_def.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/upb_def.h')
-rw-r--r--src/upb_def.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/upb_def.h b/src/upb_def.h
index d02fbf4..c2509ec 100644
--- a/src/upb_def.h
+++ b/src/upb_def.h
@@ -175,8 +175,8 @@ typedef struct _upb_msgdef {
// Hash table entries for looking up fields by name or number.
typedef struct {
bool junk;
- upb_fieldtype_t field_type;
- upb_wire_type_t native_wire_type;
+ uint8_t field_type;
+ uint8_t native_wire_type;
upb_fielddef *f;
} upb_itof_ent;
typedef struct {
@@ -209,7 +209,7 @@ INLINE upb_fielddef *upb_msgdef_ntof(upb_msgdef *m, upb_string *name) {
return e ? e->f : NULL;
}
-INLINE upb_field_count_t upb_msgdef_numfields(upb_msgdef *m) {
+INLINE int upb_msgdef_numfields(upb_msgdef *m) {
return upb_strtable_count(&m->ntof);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback