summaryrefslogtreecommitdiff
path: root/src/upb_text.h
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2010-01-16 09:00:59 -0800
committerJoshua Haberman <joshua@reverberate.org>2010-01-16 09:00:59 -0800
commit611afe9c6928ea814abd37c4b3cc2869a6ed5efd (patch)
tree9b57805cb619014a411d0504a57e2dd5d1e0c9de /src/upb_text.h
parentd5566c6038845e505f7c16130b2368ef9bb3a373 (diff)
Removed union tag from types.
Diffstat (limited to 'src/upb_text.h')
-rw-r--r--src/upb_text.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/upb_text.h b/src/upb_text.h
index 86d69a2..d89c9d6 100644
--- a/src/upb_text.h
+++ b/src/upb_text.h
@@ -22,10 +22,9 @@ INLINE void upb_text_printer_init(upb_text_printer *p, bool single_line) {
p->indent_depth = 0;
p->single_line = single_line;
}
-void upb_text_printval(upb_field_type_t type, union upb_value p, FILE *file);
+void upb_text_printval(upb_field_type_t type, upb_value p, FILE *file);
void upb_text_printfield(upb_text_printer *p, upb_strptr name,
- upb_field_type_t valtype, union upb_value val,
- FILE *stream);
+ upb_field_type_t valtype, upb_value val, FILE *stream);
void upb_text_push(upb_text_printer *p, upb_strptr submsg_type,
FILE *stream);
void upb_text_pop(upb_text_printer *p, FILE *stream);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback