diff options
Diffstat (limited to 'src/trie.c')
-rw-r--r-- | src/trie.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -129,7 +129,7 @@ struct trie_node { * tag to distinguish internal nodes from leaves. This is safe as long * as all dynamic allocations are aligned to more than a single byte. */ - uintptr_t children[]; + uintptr_t children[]; // _counted_by(count_ones(bitmap)) }; /** Check if an encoded pointer is to an internal node. */ |