diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-02-07 15:03:29 -0700 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-02-07 15:03:29 -0700 |
commit | 84939c21f68e6d4158cf2506851ab4db2f0afe78 (patch) | |
tree | 53ed265c1c46f04784831084aa74491f4fe115ed /bucket.go | |
parent | Clean up. (diff) | |
download | dedo-84939c21f68e6d4158cf2506851ab4db2f0afe78.tar.gz dedo-84939c21f68e6d4158cf2506851ab4db2f0afe78.tar.xz |
Refactor node lookup.
Diffstat (limited to 'bucket.go')
-rw-r--r-- | bucket.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,6 +20,6 @@ func (b *Bucket) cursor() *Cursor { return &Cursor{ transaction: b.transaction, root: b.root, - stack: make([]elem, 0), + stack: make([]pageElementRef, 0), } } |