mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 21:45:04 +00:00
Move the list member to the top of hashtable_pair struct
This may make debugging easier with limited debuggers.
This commit is contained in:
parent
1c38ab17f5
commit
3c9e5c9925
1 changed files with 4 additions and 1 deletions
|
@ -8,6 +8,9 @@
|
|||
#ifndef HASHTABLE_H
|
||||
#define HASHTABLE_H
|
||||
|
||||
#include <stdlib.h>
|
||||
#include "jansson.h"
|
||||
|
||||
struct hashtable_list {
|
||||
struct hashtable_list *prev;
|
||||
struct hashtable_list *next;
|
||||
|
@ -17,8 +20,8 @@ struct hashtable_list {
|
|||
key-value pair. In this case, it just encodes some extra data,
|
||||
too */
|
||||
struct hashtable_pair {
|
||||
size_t hash;
|
||||
struct hashtable_list list;
|
||||
size_t hash;
|
||||
json_t *value;
|
||||
size_t serial;
|
||||
char key[1];
|
||||
|
|
Loading…
Add table
Reference in a new issue