diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-05-19 20:14:05 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-05-19 20:14:05 (GMT) |
commit | 24e726fb58d2eca9e18575ffb76e547f958608de (patch) | |
tree | 18ca1837beb4bfea67c3d5a46f3cc4fee4689165 /src/module.cc | |
parent | e25fff81af72a31f6118f4840b65193aa0ec1d0a (diff) |
first refactoring towards fixing issue364
Diffstat (limited to 'src/module.cc')
-rw-r--r-- | src/module.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/module.cc b/src/module.cc index e853457..001c6c8 100644 --- a/src/module.cc +++ b/src/module.cc @@ -194,8 +194,10 @@ std::string Module::dump(const std::string &indent, const std::string &name) con return dump.str(); } +#include <iostream> void FileModule::registerInclude(const std::string &filename) { + std::cout << "reginclude" << filename << "\n"; struct stat st; memset(&st, 0, sizeof(struct stat)); stat(filename.c_str(), &st); |