diff options
Diffstat (limited to 'tools/kochdocs.nim')
-rw-r--r-- | tools/kochdocs.nim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/kochdocs.nim b/tools/kochdocs.nim index bbeb3d306..232e68f5d 100644 --- a/tools/kochdocs.nim +++ b/tools/kochdocs.nim @@ -1,6 +1,10 @@ ## Part of 'koch' responsible for the documentation generation. -import os, strutils, osproc, sets, pathnorm, sequtils +import std/[os, strutils, osproc, sets, pathnorm, sequtils] + +when defined(nimPreviewSlimSystem): + import std/assertions + # XXX: Remove this feature check once the csources supports it. when defined(nimHasCastPragmaBlocks): import std/pegs |