Merge pull request #513 from bung87/fix-int-set-construction
fix int set construction
This commit is contained in:
commit
64b5f0a316
|
@ -167,7 +167,7 @@ proc parsePath*(path: string): Path {.raises: [PixieError].} =
|
|||
armed = true
|
||||
|
||||
template expectsArcFlag(): bool =
|
||||
kind in {Arc, RArc} and numbers.len mod 7 in {3, 4}
|
||||
kind in {Arc, RArc} and numbers.len mod 7 in [3, 4]
|
||||
|
||||
while p < path.len:
|
||||
case path[p]:
|
||||
|
|
Loading…
Reference in a new issue