summaryrefslogtreecommitdiff
path: root/src/callable.cpp
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-09-08 16:26:11 -0700
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-09-08 16:26:11 -0700
commitdf2520e4b2c87e2302ee4c6cec1e672091efebfb (patch)
treef3bcd4fa7c4d0c6ee601268ceca4d6841ed90d0d /src/callable.cpp
parenteb86ac350756afeffa0e2db8be87876d35bc40a8 (diff)
Refactoring function class, and making it even more easy to directly enable native C functions in PHP
Diffstat (limited to 'src/callable.cpp')
-rw-r--r--src/callable.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callable.cpp b/src/callable.cpp
index 69ef148..4db463c 100644
--- a/src/callable.cpp
+++ b/src/callable.cpp
@@ -11,7 +11,7 @@
/**
* Namespace
*/
-namespace PhpCpp {
+namespace Php {
/**
* Function that is called by the Zend engine every time that a function gets called
@@ -101,7 +101,7 @@ void Callable::process(const std::initializer_list<Argument> &arguments)
for (auto it = begin(arguments); it != arguments.end(); it++)
{
// fill the argument structure
- it->internal()->fill(&_argv[++i]);
+// it->internal()->fill(&_argv[++i]);
}
}