summaryrefslogtreecommitdiff
path: root/src/function.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-04-06 14:44:03 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-04-06 14:44:03 +0200
commit9bc5d1ed595e0ff0b7cec9a87d06a7923c211ebd (patch)
tree56681046544fce1bad3466a77b62194a4978ec89 /src/function.h
parent97269e8159b419fa624980ce70de908f22c4982c (diff)
removed all zend dependencies from the public extension object, and moved it into the src directory
Diffstat (limited to 'src/function.h')
-rw-r--r--src/function.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/function.h b/src/function.h
index fd60944..4c34ac7 100644
--- a/src/function.h
+++ b/src/function.h
@@ -67,7 +67,7 @@ public:
* @param prefix Active namespace prefix
* @param entry Entry to be filled
*/
- void initialize(const std::string &prefix, struct _zend_function_entry *entry)
+ void initialize(const std::string &prefix, zend_function_entry *entry)
{
// if there is a namespace prefix, we should adjust the name
if (prefix.size()) _ptr = HiddenPointer<Callable>(this, prefix+"\\"+(const char *)_ptr);