mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 11:42:33 +00:00
make niminst compile again
This commit is contained in:
@@ -15,7 +15,7 @@ when haveZipLib:
|
||||
|
||||
import
|
||||
os, osproc, strutils, parseopt, parsecfg, strtabs, streams, debcreation,
|
||||
securehash
|
||||
"../../compiler/securehash"
|
||||
|
||||
const
|
||||
maxOS = 20 # max number of OSes
|
||||
@@ -283,7 +283,7 @@ proc yesno(p: var CfgParser, v: string): bool =
|
||||
else: quit(errorStr(p, "unknown value; use: yes|no"))
|
||||
|
||||
proc incl(s: var seq[string], x: string): int =
|
||||
for i in 0.. <s.len:
|
||||
for i in 0 ..< s.len:
|
||||
if cmpIgnoreStyle(s[i], x) == 0: return i
|
||||
s.add(x)
|
||||
result = s.len-1
|
||||
|
||||
Reference in New Issue
Block a user