From 3c50082d47f6e4026f2c0a92a0c28b6eb18f0bd6 Mon Sep 17 00:00:00 2001 From: tidwall Date: Wed, 13 Feb 2019 17:18:08 -0700 Subject: [PATCH] Move geo obj to bottom of struct --- internal/collection/item/item.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/collection/item/item.go b/internal/collection/item/item.go index ed6b7bab..131da220 100644 --- a/internal/collection/item/item.go +++ b/internal/collection/item/item.go @@ -10,10 +10,10 @@ import ( // Item is a item for Tile38 collections type Item struct { - obj geojson.Object // geojson or string fieldsLen uint32 // fields block size in bytes, not num of fields idLen uint32 // id block size in bytes data unsafe.Pointer // pointer to raw block of bytes + obj geojson.Object // geojson or string } // ID returns the items ID as a string