re-arrange rb node fields for alignment

This commit is contained in:
c9s 2021-12-07 21:22:11 +08:00
parent fb2204a86d
commit f716dd12c0

View File

@ -17,6 +17,6 @@ A black node may have red or black children
*/
type RBNode struct {
left, right, parent *RBNode
color Color
key, value fixedpoint.Value
key, value fixedpoint.Value
color Color
}