From bc717d84023eadd0fe94668f4034e4a09e4be9c9 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Mon, 15 Jun 2009 16:07:08 -0700 Subject: Implement inlining that works with both C99 and all versions of GCC. --- upb_parse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'upb_parse.h') diff --git a/upb_parse.h b/upb_parse.h index 829e97c..068d522 100644 --- a/upb_parse.h +++ b/upb_parse.h @@ -27,7 +27,7 @@ upb_status_t parse_tag(uint8_t **buf, struct upb_tag *tag); extern upb_wire_type_t upb_expected_wire_types[]; /* Returns true if wt is the correct on-the-wire type for ft. */ -inline bool upb_check_type(upb_wire_type_t wt, upb_field_type_t ft) { +INLINE bool upb_check_type(upb_wire_type_t wt, upb_field_type_t ft) { return upb_expected_wire_types[ft] == wt; } -- cgit v1.2.3