Improved struct alignment

This commit is contained in:
2023-07-29 17:00:10 +02:00
parent 2a94dc114e
commit 48545fdf01
3 changed files with 8 additions and 8 deletions

View File

@ -16,8 +16,8 @@ const (
// Tree represents a radix tree.
type Tree[T any] struct {
root treeNode[T]
static map[string]T
root treeNode[T]
canBeStatic [2048]bool
}