Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyun0831 committed Dec 13, 2021
1 parent b691eb2 commit 0c3bebb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/hunt/collection/HashMap.d
Expand Up @@ -1235,7 +1235,8 @@ final class TreeNode(K, V) : LinkedHashMapEntry!(K, V) {
K k = x.key;
size_t h = x.hash;
for (TreeNode!(K, V) p = root;;) {
size_t dir, ph;
size_t ph;
int dir;
K pk = p.key;
if ((ph = p.hash) > h)
dir = -1;
Expand Down

0 comments on commit 0c3bebb

Please sign in to comment.