diff options
author | Marius Kintel <marius@kintel.net> | 2012-07-15 01:57:55 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-07-15 01:57:55 (GMT) |
commit | 13557f1f9a44caccb0546717065ed72c27a210b3 (patch) | |
tree | d0ed7bd176d7c0b052431cb99efd358602d6b6bb /src/ModuleCache.cc | |
parent | 38a4585d1a9abe9c779c5d0677bfc81c407db371 (diff) | |
parent | 2495df6bab07f14f0eed7062dec17d24599aa838 (diff) |
Merge branch 'timestamp-cache'
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; |