summary refs log tree commit diff stats
path: root/compiler/semfold.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-07-18 00:36:03 +0200
committerAraq <rumpf_a@web.de>2019-07-18 00:36:03 +0200
commit07d465ca42c98c07dedee0d4834afae5c87702da (patch)
tree2f8b1a315372c295068a1a4f599913f1326fe278 /compiler/semfold.nim
parentf50e4500c257e3d57654f5230db75042da233d24 (diff)
downloadNim-07d465ca42c98c07dedee0d4834afae5c87702da.tar.gz
[refactoring] remove unused imports in the compiler and in some stdlib modules
Diffstat (limited to 'compiler/semfold.nim')
-rw-r--r--compiler/semfold.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/semfold.nim b/compiler/semfold.nim
index 2f07940c8..c7efa1a87 100644
--- a/compiler/semfold.nim
+++ b/compiler/semfold.nim
@@ -11,8 +11,8 @@
 # and evaluation phase
 
 import
-  strutils, options, ast, astalgo, trees, treetab, nimsets,
-  nversion, platform, math, msgs, os, condsyms, idents, renderer, types,
+  strutils, options, ast, trees, nimsets,
+  platform, math, msgs, idents, renderer, types,
   commands, magicsys, modulegraphs, strtabs, lineinfos
 
 proc newIntNodeT*(intVal: BiggestInt, n: PNode; g: ModuleGraph): PNode =