From 2fd4198b78358cf2ba527296fafb5b1728e28ea8 Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Mon, 24 Mar 2014 13:43:47 +0100 Subject: added tsrm parameter to all methods to make it compile on tsrm platforms --- include/namespace.h | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to 'include/namespace.h') diff --git a/include/namespace.h b/include/namespace.h index 9d6e6f2..55fea05 100644 --- a/include/namespace.h +++ b/include/namespace.h @@ -199,18 +199,10 @@ protected: /** * Initialize the namespace after it was registered * @param parent Parent namespace + * @param tsrm_ls */ - void initialize(const std::string &parent) - { - // the namespace to use - std::string prefix = parent.size() ? parent + "\\" + _name : _name; - - // loop through the classes in this namespace - for (auto &c : _classes) c->initialize(prefix); - - // and loop through the other namespaces - for (auto &n : _namespaces) n->initialize(prefix); - } +// void initialize(const std::string &parent); + void initialize(const std::string &parent, void ***tsrm_ls); }; /** -- cgit v1.2.3