Remove unused field
This commit is contained in:
parent
e406a2c15e
commit
b419bfd95f
|
@ -130,7 +130,6 @@ int nghttp2_map_each(nghttp2_map *map,
|
||||||
|
|
||||||
void nghttp2_map_entry_init(nghttp2_map_entry *entry, key_type key) {
|
void nghttp2_map_entry_init(nghttp2_map_entry *entry, key_type key) {
|
||||||
entry->key = key;
|
entry->key = key;
|
||||||
entry->next = NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FNV1a hash */
|
/* FNV1a hash */
|
||||||
|
|
|
@ -40,12 +40,11 @@
|
||||||
typedef int32_t key_type;
|
typedef int32_t key_type;
|
||||||
|
|
||||||
typedef struct nghttp2_map_entry {
|
typedef struct nghttp2_map_entry {
|
||||||
struct nghttp2_map_entry *next;
|
union {
|
||||||
key_type key;
|
key_type key;
|
||||||
#if SIZEOF_INT_P == 4
|
|
||||||
/* we requires 8 bytes aligment */
|
/* we requires 8 bytes aligment */
|
||||||
int64_t pad;
|
int64_t pad;
|
||||||
#endif
|
};
|
||||||
} nghttp2_map_entry;
|
} nghttp2_map_entry;
|
||||||
|
|
||||||
typedef struct nghttp2_map_bucket {
|
typedef struct nghttp2_map_bucket {
|
||||||
|
|
Loading…
Reference in New Issue