summaryrefslogtreecommitdiff
path: root/src/upb_context.h
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-11-27 14:21:19 -0800
committerJoshua Haberman <joshua@reverberate.org>2009-11-27 14:21:19 -0800
commitd16038073629b3f89acabfbd2f2d9911b2a771d4 (patch)
tree18f8264074541e373c8d393ea933f2b4b4a5f87b /src/upb_context.h
parent6191fe3ae2fee99948da11d9834fe6425cf32037 (diff)
Update upbc to use self-describing upb_msg instead of void*.
Diffstat (limited to 'src/upb_context.h')
-rw-r--r--src/upb_context.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/upb_context.h b/src/upb_context.h
index b223b40..77c2db8 100644
--- a/src/upb_context.h
+++ b/src/upb_context.h
@@ -41,9 +41,9 @@ struct upb_symtab_entry {
struct upb_context {
upb_atomic_refcount_t refcount;
upb_rwlock_t lock;
- struct upb_strtable symtab; /* The context's symbol table. */
- struct upb_strtable psymtab; /* Private symbols, for internal use. */
- struct upb_msgdef *fds_msg; /* In psymtab, ptr here for convenience. */
+ struct upb_strtable symtab; /* The context's symbol table. */
+ struct upb_strtable psymtab; /* Private symbols, for internal use. */
+ struct upb_msgdef *fds_msgdef; /* In psymtab, ptr here for convenience. */
/* A list of the FileDescriptorProtos we own (from having parsed them
* ourselves) and must free on destruction. */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback