diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-07-18 08:48:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-18 08:48:11 +0200 |
commit | 4becd5a2a8d67c7481af457d5007e1a313d454c8 (patch) | |
tree | 2f8b1a315372c295068a1a4f599913f1326fe278 /compiler/semdata.nim | |
parent | f50e4500c257e3d57654f5230db75042da233d24 (diff) | |
parent | 07d465ca42c98c07dedee0d4834afae5c87702da (diff) | |
download | Nim-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/semdata.nim')
-rw-r--r-- | compiler/semdata.nim | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/compiler/semdata.nim b/compiler/semdata.nim index e411633c2..6c7dd02ed 100644 --- a/compiler/semdata.nim +++ b/compiler/semdata.nim @@ -10,11 +10,8 @@ ## This module contains the data structures for the semantic checking phase. import - strutils, intsets, options, lexer, ast, astalgo, trees, treetab, - wordrecg, - ropes, msgs, platform, os, condsyms, idents, renderer, types, extccomp, math, - magicsys, nversion, nimsets, parser, times, passes, vmdef, - modulegraphs, lineinfos + intsets, options, ast, astalgo, msgs, idents, renderer, + magicsys, passes, vmdef, modulegraphs, lineinfos type TOptionEntry* = object # entries to put on a stack for pragma parsing |