remove unnecesary inlines

This commit is contained in:
Dmitriy Ryajov 2024-01-22 15:02:05 -06:00
parent 9e0e975279
commit d0840452d0
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4

View File

@ -59,19 +59,19 @@ type
slotRoots: seq[H]
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.
##
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).
##
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).
##