From 89969b4b0bea3bd4cddf97c989ca63f3a1aaa07c Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 26 May 2025 10:26:12 -0400 Subject: Add support for __attribute__((counted_by(...))) --- src/trie.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/trie.c') diff --git a/src/trie.c b/src/trie.c index 4e0944a..6aac17f 100644 --- a/src/trie.c +++ b/src/trie.c @@ -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. */ -- cgit v1.2.3