NimScript: make the compiler shut up about effects it doesn't know about

This commit is contained in:
Araq
2015-09-08 10:17:42 +02:00
parent 6d654f866d
commit 833a9344fa

View File

@@ -13,6 +13,9 @@
template builtin = discard
# We know the effects better than the compiler:
{.push hint[XDeclaredButNotUsed]: off.}
proc listDirs*(dir: string): seq[string] =
## Lists all the subdirectories (non-recursively) in the directory `dir`.
builtin
@@ -269,3 +272,5 @@ proc requires*(deps: varargs[string]) =
## Nimble support: Call this to set the list of requirements of your Nimble
## package.
for d in deps: requiresData.add(d)
{.pop.}