summaryrefslogtreecommitdiff
path: root/src/upb.h
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-07-09 18:49:00 -0700
committerJoshua Haberman <joshua@reverberate.org>2009-07-09 22:05:01 -0700
commite48f855b06babfa43b1a4f2a53a1f90c9df20067 (patch)
treeed7ad4010921e9d2c80bce51ee6433017f455108 /src/upb.h
parent6485e39865f1aecf283e0dc0edf91d0a1c0363f0 (diff)
Implemented upb_msg_eql.
Diffstat (limited to 'src/upb.h')
-rw-r--r--src/upb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/upb.h b/src/upb.h
index 685a292..a05528b 100644
--- a/src/upb.h
+++ b/src/upb.h
@@ -70,7 +70,7 @@ union upb_value {
bool _bool;
struct upb_string **string;
struct upb_array **array;
- void *message;
+ void *msg;
};
union upb_value_ptr {
@@ -81,9 +81,9 @@ union upb_value_ptr {
uint32_t *uint32;
uint64_t *uint64;
bool *_bool;
- struct upb_string **string;
- struct upb_array **array;
- void **message;
+ struct upb_string **str;
+ struct upb_array **arr;
+ void **msg;
void *_void;
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback