Skip to content

Commit ee629d4

Browse files
authored
Use proper type
1 parent 30e33ed commit ee629d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl TNode {
4646
res_ref.right = TNode::make_tree(depth - 1, node_pool);
4747
res_ref.left = TNode::make_tree(depth - 1, node_pool);
4848
}
49-
res_ref as *mut T
49+
res_ref as *mut TNode
5050
}
5151
}
5252

0 commit comments

Comments
 (0)