diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-05-30 10:15:41 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-05-30 10:15:41 +0200 |
commit | ddc6cec69e66f4cc28275f61b73962042e257575 (patch) | |
tree | 6b7752efde22f3a1bac23b083eb5e8e27f9a8a35 /compiler/main.nim | |
parent | 688c54d8f158ff977161a234374b1cd321ba95f3 (diff) | |
download | Nim-ddc6cec69e66f4cc28275f61b73962042e257575.tar.gz |
refactoring: move DB model to incremental.nim
Diffstat (limited to 'compiler/main.nim')
-rw-r--r-- | compiler/main.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main.nim b/compiler/main.nim index ba2537ef8..0929974bd 100644 --- a/compiler/main.nim +++ b/compiler/main.nim @@ -157,7 +157,7 @@ const proc mainCommand*(graph: ModuleGraph; cache: IdentCache) = let conf = graph.config - setupModuleCache() + setupModuleCache(graph) # In "nim serve" scenario, each command must reset the registered passes clearPasses(graph) conf.lastCmdTime = epochTime() |