From d619852e06983dc30d2070f6c4af32d563b101f2 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Thu, 19 May 2011 10:56:34 -0700 Subject: Change dispatcher error handling model. Now the dispatcher will call error handlers instaed of returning statuses that the caller has to constantly check. --- src/upb_def.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/upb_def.h') 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); } -- cgit v1.2.3