diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-08-06 20:00:26 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-08-08 09:33:39 +0200 |
commit | 5b6b73f2a2b0087a800842e790e83b37be938b74 (patch) | |
tree | 90530a7e17ff2e3af71d46020d5c868806a63a0e | |
parent | a377c5cce4d1e4e70e9cdcaf9ad589e2016b6677 (diff) | |
download | Nim-5b6b73f2a2b0087a800842e790e83b37be938b74.tar.gz |
use slashes instead of dots for paths
-rw-r--r-- | compiler/lookups.nim | 2 | ||||
-rw-r--r-- | compiler/sem.nim | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/compiler/lookups.nim b/compiler/lookups.nim index 87694988a..bab631e6f 100644 --- a/compiler/lookups.nim +++ b/compiler/lookups.nim @@ -11,7 +11,7 @@ import intsets, ast, astalgo, idents, semdata, types, msgs, options, - renderer, wordrecg, idgen, nimfix.prettybase, lineinfos, strutils + renderer, wordrecg, idgen, nimfix/prettybase, lineinfos, strutils proc ensureNoMissingOrUnusedSymbols(c: PContext; scope: PScope) diff --git a/compiler/sem.nim b/compiler/sem.nim index 5d6e54604..427b44e04 100644 --- a/compiler/sem.nim +++ b/compiler/sem.nim @@ -16,12 +16,12 @@ import procfind, lookups, pragmas, passes, semdata, semtypinst, sigmatch, intsets, transf, vmdef, vm, idgen, aliases, cgmeth, lambdalifting, evaltempl, patterns, parampatterns, sempass2, linter, semmacrosanity, - semparallel, lowerings, pluginsupport, plugins.active, rod, lineinfos + semparallel, lowerings, pluginsupport, plugins/active, rod, lineinfos from modulegraphs import ModuleGraph when defined(nimfix): - import nimfix.prettybase + import nimfix/prettybase # implementation |