Skip to content

Commit

Permalink
Fix a static analysis warning: "trie.next" is assigned with the same …
Browse files Browse the repository at this point in the history
…value
  • Loading branch information
PolarGoose authored and skvadrik committed Oct 24, 2024
1 parent c8e8ab5 commit 3f0f46f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/skeleton/mtag_trie.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ inline uint32_t mtag_trie_next(mtag_trie_t& trie) {
memcpy(head, trie.head, trie.size * sizeof(mtag_t));
free(trie.head);
trie.head = head;
trie.next = trie.size;
trie.size *= 2;
}

Expand Down

0 comments on commit 3f0f46f

Please sign in to comment.