diff options
Diffstat (limited to 'src/ModuleCache.cc')
-rw-r--r-- | src/ModuleCache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ModuleCache.cc b/src/ModuleCache.cc index 70b1fb9..d03d121 100644 --- a/src/ModuleCache.cc +++ b/src/ModuleCache.cc @@ -83,7 +83,7 @@ Module *ModuleCache::evaluate(const std::string &filename) this->entries[filename] = e; std::string pathname = boosty::stringy(fs::path(filename).parent_path()); - lib_mod = dynamic_cast<Module*>(parse(text.c_str(), pathname.c_str(), 0)); + lib_mod = dynamic_cast<Module*>(parse(text.c_str(), pathname.c_str(), false)); if (lib_mod) { this->entries[filename].module = lib_mod; |