nim: use discard instead of continue in case else

This commit is contained in:
Rupus Reinefjord 2020-12-28 13:25:05 +01:00
parent a7fe5c186b
commit 1149f8efd1

View file

@ -55,7 +55,7 @@ proc tokenize(data: string): seq[Token] =
of ',': tokens.add(Read) of ',': tokens.add(Read)
of '[': tokens.add(LoopStart) of '[': tokens.add(LoopStart)
of ']': tokens.add(LoopEnd) of ']': tokens.add(LoopEnd)
else: continue else: discard
return tokens return tokens
proc parse(tokens: seq[Token], index: int): (seq[Command], int) = proc parse(tokens: seq[Token], index: int): (seq[Command], int) =