Move 'err' to the end of the struct
This commit is contained in:
parent
c9de029225
commit
8abb3807cb
1 changed files with 1 additions and 1 deletions
|
|
@ -46,11 +46,11 @@ type Iterator struct {
|
||||||
dir quad.Direction
|
dir quad.Direction
|
||||||
qs *QuadStore
|
qs *QuadStore
|
||||||
result *Token
|
result *Token
|
||||||
err error
|
|
||||||
buffer [][]byte
|
buffer [][]byte
|
||||||
offset int
|
offset int
|
||||||
done bool
|
done bool
|
||||||
size int64
|
size int64
|
||||||
|
err error
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewIterator(bucket []byte, d quad.Direction, value graph.Value, qs *QuadStore) *Iterator {
|
func NewIterator(bucket []byte, d quad.Direction, value graph.Value, qs *QuadStore) *Iterator {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue