mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-03-03 14:00:40 +00:00
remove unnecesary inlines
This commit is contained in:
parent
9e0e975279
commit
d0840452d0
@ -59,19 +59,19 @@ type
|
|||||||
slotRoots: seq[H]
|
slotRoots: seq[H]
|
||||||
verifyTree: ?T
|
verifyTree: ?T
|
||||||
|
|
||||||
func slotRoots*[T, H](self: SlotsBuilder[T, H]): seq[H] {.inline.} =
|
func slotRoots*[T, H](self: SlotsBuilder[T, H]): seq[H] =
|
||||||
## Returns the slot roots.
|
## Returns the slot roots.
|
||||||
##
|
##
|
||||||
|
|
||||||
self.slotRoots
|
self.slotRoots
|
||||||
|
|
||||||
func verifyTree*[T, H](self: SlotsBuilder[T, H]): ?H {.inline.} =
|
func verifyTree*[T, H](self: SlotsBuilder[T, H]): ?T =
|
||||||
## Returns the slots tree (verification tree).
|
## Returns the slots tree (verification tree).
|
||||||
##
|
##
|
||||||
|
|
||||||
self.verifyTree
|
self.verifyTree
|
||||||
|
|
||||||
func verifyRoot*[T, H](self: SlotsBuilder[T, H]): ?H {.inline.} =
|
func verifyRoot*[T, H](self: SlotsBuilder[T, H]): ?H =
|
||||||
## Returns the slots root (verification root).
|
## Returns the slots root (verification root).
|
||||||
##
|
##
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user