diff options
Diffstat (limited to 'vendor/codeberg.org/gruf/go-structr/item.go')
-rw-r--r-- | vendor/codeberg.org/gruf/go-structr/item.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/codeberg.org/gruf/go-structr/item.go b/vendor/codeberg.org/gruf/go-structr/item.go index 9e837e157..97079c378 100644 --- a/vendor/codeberg.org/gruf/go-structr/item.go +++ b/vendor/codeberg.org/gruf/go-structr/item.go @@ -10,12 +10,12 @@ type indexed_item struct { // is stored in a main list. elem list_elem + // cached data with type. + data interface{} + // indexed stores the indices // this item is stored under. indexed []*index_entry - - // cached data with type. - data interface{} } var indexed_item_pool sync.Pool |