Remove deprecated rightSize (#21011)

* Remove deprecated rightSize nop

* Remove deprecated rightSize nop
This commit is contained in:
Juan Carlos
2022-12-08 11:26:58 -03:00
committed by GitHub
parent 0a1d4ba842
commit f8e64d879c
2 changed files with 2 additions and 10 deletions

View File

@@ -38,16 +38,6 @@ proc slotsNeeded(count: Natural): int {.inline.} =
# Make sure to synchronize with `mustRehash` above
result = nextPowerOfTwo(count * 3 div 2 + 4)
proc rightSize*(count: Natural): int {.inline, deprecated: "Deprecated since 1.4.0".} =
## It is not needed anymore because
## picking the correct size is done internally.
##
## Returns the value of `initialSize` to support `count` items.
##
## If more items are expected to be added, simply add that
## expected extra amount to the parameter before calling this.
result = count
template rawGetKnownHCImpl() {.dirty.} =
if t.dataLen == 0:
return -1