diff options
author | Miran <narimiran@disroot.org> | 2020-07-08 15:01:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 15:01:47 +0200 |
commit | 3de5296337a0711b4d907728ac24fa07791d3224 (patch) | |
tree | 9f9ac91e49e9deefd995eb405f4341c6653e43e7 /tests/manyloc/argument_parser | |
parent | 06d776a5828d429f62c3189a99161604d50f9b96 (diff) | |
download | Nim-3de5296337a0711b4d907728ac24fa07791d3224.tar.gz |
remove a condition that table size must be passed as power of 2 (#14926)
* remove a condition that table size must be passed as power of 2 * remove power-of-2 condition from sets and sharedtables * remove power-of-2 condition from deques * use 'correctSize' for both branches * prettify changelog.md and fix typos * add a changelog entry * fix double-call of 'right-size' * fix the same thing in sets.nim * introduce a new internal proc `slotsNeeded` Deprecate the public proc `rightSize`, which is not needed anymore. Now it is an identity function, allowing the old code to work correctly and without extra allocations.
Diffstat (limited to 'tests/manyloc/argument_parser')
-rw-r--r-- | tests/manyloc/argument_parser/argument_parser.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/manyloc/argument_parser/argument_parser.nim b/tests/manyloc/argument_parser/argument_parser.nim index 136d3e06b..b9788a81d 100644 --- a/tests/manyloc/argument_parser/argument_parser.nim +++ b/tests/manyloc/argument_parser/argument_parser.nim @@ -301,8 +301,7 @@ template build_specification_lookup(): OrderedTable[string, ptr Tparameter_specification] = ## Returns the table used to keep pointers to all of the specifications. var result {.gensym.}: OrderedTable[string, ptr Tparameter_specification] - result = initOrderedTable[string, ptr Tparameter_specification]( - tables.rightSize(expected.len)) + result = initOrderedTable[string, ptr Tparameter_specification](expected.len) for i in 0..expected.len-1: for param_to_detect in expected[i].names: if result.hasKey(param_to_detect): |