summaryrefslogtreecommitdiff
path: root/zend/namespace.cpp
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-04-09 11:26:08 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-04-09 11:26:08 +0200
commite11d3cdadc4619053f547c28cc6ff253c7378fd6 (patch)
treec91eaa6c67e87a556bb616a5bed08507935a0579 /zend/namespace.cpp
parent2bea50a1f65e0e041ed48f7f8a34e62598859564 (diff)
fixed compile issues with gcc 4.7 (see issue #72)
Diffstat (limited to 'zend/namespace.cpp')
-rw-r--r--zend/namespace.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/zend/namespace.cpp b/zend/namespace.cpp
index bea31a1..2b4b62a 100644
--- a/zend/namespace.cpp
+++ b/zend/namespace.cpp
@@ -85,13 +85,13 @@ Namespace &Namespace::add(const char *name, const native_callback_3 &function, c
*
* @param callback
*/
-void Namespace::apply(const std::function<void(const std::string &ns, Function &func)> &callback)
+void Namespace::functions(const std::function<void(const std::string &ns, Function &func)> &callback)
{
// loop through the functions, and apply the callback
for (auto &function : _functions) callback(_name, *function);
// loop through the other namespaces
- for (auto &ns : _namespaces) ns->apply([this, callback](const std::string &ns, Function &func) {
+ for (auto &ns : _namespaces) ns->functions([this, callback](const std::string &ns, Function &func) {
// if this is the root namespace, we don't have to change the prefix
if (_name.size() == 0) return callback(ns, func);
@@ -110,13 +110,13 @@ void Namespace::apply(const std::function<void(const std::string &ns, Function &
*
* @param callback
*/
-void Namespace::apply(const std::function<void(const std::string &ns, ClassBase &clss)> &callback)
+void Namespace::classes(const std::function<void(const std::string &ns, ClassBase &clss)> &callback)
{
// loop through the classes, and apply the callback
for (auto &c : _classes) callback(_name, *c);
// loop through the other namespaces
- for (auto &ns : _namespaces) ns->apply([this, callback](const std::string &ns, ClassBase &clss) {
+ for (auto &ns : _namespaces) ns->classes([this, callback](const std::string &ns, ClassBase &clss) {
// if this is the root namespace, we don't have to change the prefix
if (_name.size() == 0) return callback(ns, clss);