diff options
Diffstat (limited to 'compiler/passaux.nim')
-rw-r--r-- | compiler/passaux.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/passaux.nim b/compiler/passaux.nim index d4361a671..dc99ffd0c 100644 --- a/compiler/passaux.nim +++ b/compiler/passaux.nim @@ -10,9 +10,9 @@ ## implements some little helper passes import - strutils, ast, astalgo, passes, msgs, options, idgen + strutils, ast, astalgo, passes, idents, msgs, options, idgen -proc verboseOpen(s: PSym): PPassContext = +proc verboseOpen(s: PSym; cache: IdentCache): PPassContext = #MessageOut('compiling ' + s.name.s); result = nil # we don't need a context rawMessage(hintProcessing, s.name.s) |