diff options
author | 2024-08-14 12:08:24 +0000 | |
---|---|---|
committer | 2024-08-14 12:08:24 +0000 | |
commit | f8d5b9f49c150574442c2d30add41981ac67e97b (patch) | |
tree | e334c632223430673b422a2d8562b494c101d174 /vendor/codeberg.org/gruf/go-structr/item.go | |
parent | [security] harden account update logic (#3198) (diff) | |
download | gotosocial-f8d5b9f49c150574442c2d30add41981ac67e97b.tar.xz |
update go-structr to v0.8.8 (#3199)
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 |