summary refs log tree commit diff stats
path: root/compiler/plugins/itersgen.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2019-07-18 08:48:11 +0200
committerGitHub <noreply@github.com>2019-07-18 08:48:11 +0200
commit4becd5a2a8d67c7481af457d5007e1a313d454c8 (patch)
tree2f8b1a315372c295068a1a4f599913f1326fe278 /compiler/plugins/itersgen.nim
parentf50e4500c257e3d57654f5230db75042da233d24 (diff)
parent07d465ca42c98c07dedee0d4834afae5c87702da (diff)
downloadNim-4becd5a2a8d67c7481af457d5007e1a313d454c8.tar.gz
Merge pull request #11771 from nim-lang/araq-remove-unused-imports
[refactoring] remove unused imports in the compiler and in some stdli…
Diffstat (limited to 'compiler/plugins/itersgen.nim')
-rw-r--r--compiler/plugins/itersgen.nim4
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/plugins/itersgen.nim b/compiler/plugins/itersgen.nim
index 440d2e081..e4b3a5029 100644
--- a/compiler/plugins/itersgen.nim
+++ b/compiler/plugins/itersgen.nim
@@ -9,9 +9,7 @@
 
 ## Plugin to transform an inline iterator into a data structure.
 
-import ".." / [ast, astalgo,
-  magicsys, lookups, semdata,
-  lambdalifting, msgs]
+import ".." / [ast, lookups, semdata, lambdalifting, msgs]
 
 proc iterToProcImpl*(c: PContext, n: PNode): PNode =
   result = newNodeI(nkStmtList, n.info)