diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-03-27 21:04:05 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-03-27 21:04:05 -0400 |
commit | ce5be644a16b3e4e7fdba0e0e4537daf3da70676 (patch) | |
tree | f198dbe1fc6d034f5ffcb6189af9fca2b7019554 /trie.h | |
parent | 4216dbac10887476feef287854e9e4037f2d1a59 (diff) | |
download | bfs-ce5be644a16b3e4e7fdba0e0e4537daf3da70676.tar.xz |
trie: Store void* values rather than const void*
Fewer casts needed this way.
Diffstat (limited to 'trie.h')
-rw-r--r-- | trie.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ struct trie_leaf { /** * An arbitrary value associated with this leaf. */ - const void *value; + void *value; /** * The length of the key in bytes. |