diff options
-rw-r--r-- | lib/system/nimscript.nim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/system/nimscript.nim b/lib/system/nimscript.nim index 878d72365..4841749a9 100644 --- a/lib/system/nimscript.nim +++ b/lib/system/nimscript.nim @@ -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.} |