Silence several Hint[Performance] warnings (#23003)

With `--mm:arc` one gets the "implicit copy; if possible, rearrange your
program's control flow" `Performance` warnings without these `move`s.
This commit is contained in:
c-blake
2023-11-29 21:36:47 +00:00
committed by GitHub
parent 96513b2506
commit beeacc86ff
4 changed files with 5 additions and 6 deletions

View File

@@ -138,7 +138,7 @@ proc parseCmdLine*(c: string): seq[string] {.
while i < c.len and c[i] > ' ':
add(a, c[i])
inc(i)
add(result, a)
add(result, move a)
when defined(nimdoc):
# Common forward declaration docstring block for parameter retrieval procs.