diff options
Diffstat (limited to 'compiler/rodread.nim')
-rw-r--r-- | compiler/rodread.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rodread.nim b/compiler/rodread.nim index 3eeee1127..9c834a410 100644 --- a/compiler/rodread.nim +++ b/compiler/rodread.nim @@ -792,7 +792,8 @@ proc findSomeWhere(id: int) = if rd != nil: var d = iiTableGet(rd.index.tab, id) if d != InvalidKey: - echo "found id ", id, " in ", gMods[i].filename + when declared(echo): + echo "found id ", id, " in ", gMods[i].filename proc getReader(moduleId: int): PRodReader = # we can't index 'gMods' here as it's indexed by a *file index* which is not |