summaryrefslogtreecommitdiff
path: root/src/methodmember.h
diff options
context:
space:
mode:
authorMartijn Otto <martijn.otto@copernica.com>2014-02-14 16:30:23 +0100
committerMartijn Otto <martijn.otto@copernica.com>2014-02-14 16:30:23 +0100
commit06aa5fd5afaba69544b93654fb0a4f9c2651306e (patch)
tree99cd2ee120786a84531b450f9ef64e2319ef5192 /src/methodmember.h
parent5c23fee5ce58ae66a70f3bd19a1dc2dff7220f13 (diff)
Merged pull request #14
Diffstat (limited to 'src/methodmember.h')
-rw-r--r--src/methodmember.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/methodmember.h b/src/methodmember.h
index 9d4bcd1..67b4dad 100644
--- a/src/methodmember.h
+++ b/src/methodmember.h
@@ -43,10 +43,10 @@ public:
* @param classname Name of the class
* @param pub Is this a public entry
*/
- virtual void fill(struct _zend_function_entry *entry, const char *classname, bool pub)
+ virtual void fill(struct _zend_function_entry *entry, const char *classname, int flags)
{
// call function object
- Function::fill(entry, classname, pub);
+ Function::fill(entry, classname, flags);
}
/**