diff options
Diffstat (limited to 'src/parsersettings.cc')
-rw-r--r-- | src/parsersettings.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parsersettings.cc b/src/parsersettings.cc index 04c20ed..5ad30e1 100644 --- a/src/parsersettings.cc +++ b/src/parsersettings.cc @@ -30,8 +30,8 @@ fs::path search_libs(const fs::path &localpath) } // files must be 'ordinary' - they must exist and be non-directories -// FIXME: Don't print anything from this function as it's called repeatedly -// for the automatic reload function (FileModule::include_modified()) +// FIXME: We cannot print any output here since these function is called periodically +// from "Automatic reload and compile" static bool check_valid(const fs::path &p, const std::vector<std::string> *openfilenames) { if (p.empty()) { @@ -55,7 +55,7 @@ static bool check_valid(const fs::path &p, const std::vector<std::string> *openf if (openfilenames) { BOOST_FOREACH(const std::string &s, *openfilenames) { if (s == fullname) { - //PRINTB("WARNING: circular include file %s", fullname); +// PRINTB("WARNING: circular include file %s", fullname); return false; } } |