From cd3d737d5e14937fb88b80979ab4743a5c3e7fb6 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Wed, 29 Jul 2009 13:00:16 -0700 Subject: Add sketch of deserializing code. --- src/upb_parse.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/upb_parse.h') diff --git a/src/upb_parse.h b/src/upb_parse.h index 2982b51..09ac4f7 100644 --- a/src/upb_parse.h +++ b/src/upb_parse.h @@ -219,8 +219,8 @@ INLINE int64_t upb_zzdec_64(uint64_t n) { return (n >> 1) ^ -(int64_t)(n & 1); } * uint8_t **outbuf); * * // Given an already read wire value s (source), convert it to a .proto - * // value and store it in *d (destination). - * void upb_wvtov_INT32(uint32_t s, int32_t *d); + * // value and return it. + * int32_t upb_wvtov_INT32(uint32_t s); */ #define WVTOV(type, wire_t, val_t) \ -- cgit v1.2.3