diff options
author | Marius Kintel <marius@kintel.net> | 2013-05-22 03:04:22 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-05-22 03:04:22 (GMT) |
commit | ef9d8a853be1a6d6ca48239fcc79106ba374ee21 (patch) | |
tree | 041fe3424e663a40986208e6829df5e955838e33 /src/module.h | |
parent | 470588b296aea880c84071ee53a23f055f9c5bf0 (diff) | |
parent | 71ab237aada8db602045063f0f1c6082ef06972a (diff) |
Merge branch 'master' into issue304
Diffstat (limited to 'src/module.h')
-rw-r--r-- | src/module.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/module.h b/src/module.h index 8f1ccb7..9f46d37 100644 --- a/src/module.h +++ b/src/module.h @@ -13,7 +13,7 @@ class ModuleInstantiation { public: ModuleInstantiation(const std::string &name = "") - : tag_root(false), tag_highlight(false), tag_background(false), modname(name) { } + : tag_root(false), tag_highlight(false), tag_background(false), recursioncount(0), modname(name) { } virtual ~ModuleInstantiation(); std::string dump(const std::string &indent) const; @@ -35,6 +35,7 @@ public: bool tag_root; bool tag_highlight; bool tag_background; + mutable int recursioncount; protected: std::string modname; std::string modpath; |