summaryrefslogtreecommitdiff
path: root/src/upb_table.h
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-12-21 10:48:01 -0800
committerJoshua Haberman <joshua@reverberate.org>2009-12-21 10:48:01 -0800
commitc2419764856e5666bfa9e3c1b87de29ec93babe1 (patch)
tree7771bf0bbcf9b1103a55b963831385b07705b739 /src/upb_table.h
parentc6cba2af37638cc47ff69aed866669567ef365d9 (diff)
In the midst of a major refactoring.
Diffstat (limited to 'src/upb_table.h')
-rw-r--r--src/upb_table.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/upb_table.h b/src/upb_table.h
index 2202684..8250354 100644
--- a/src/upb_table.h
+++ b/src/upb_table.h
@@ -17,7 +17,7 @@
#include <assert.h>
#include "upb.h"
-#include "upb_string.h"
+#include "upb_data.h"
#ifdef __cplusplus
extern "C" {
@@ -39,7 +39,7 @@ struct upb_inttable_entry {
// performance by letting us compare hashes before comparing lengths or the
// strings themselves.
struct upb_strtable_entry {
- struct upb_string *key; // We own one ref.
+ struct upb_string *key; // We own a frozen ref.
uint32_t next; // Internal chaining.
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback