summaryrefslogtreecommitdiff
path: root/src/memberinfo.h
diff options
context:
space:
mode:
authorMartijn Otto <martijn.otto@copernica.com>2014-02-18 13:43:03 +0100
committerMartijn Otto <martijn.otto@copernica.com>2014-02-18 13:43:03 +0100
commit9c2c6bbb77974344d3f1e344716391e4e5aa5345 (patch)
tree13eb531abc83916b679e81d0f0f8b84f4b6d599f /src/memberinfo.h
parent1ae81bf877a40929c986c1b7961c2f70918fbb7e (diff)
Fixed a rather silly bug where a function no longer overrode a function from the parent class. Made this function explicitly override to prevent future problems
Diffstat (limited to 'src/memberinfo.h')
-rw-r--r--src/memberinfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/memberinfo.h b/src/memberinfo.h
index 935ad23..fed7976 100644
--- a/src/memberinfo.h
+++ b/src/memberinfo.h
@@ -67,7 +67,7 @@ public:
* @param size Size of the name
* @param flags Additional flags
*/
- virtual void declare(struct _zend_class_entry *entry, const char *name, int size, int flags) {};
+ virtual void declare(struct _zend_class_entry *entry, const char *name, int size, MemberModifier flags) {};
/**
* Fill a function entry object
@@ -75,7 +75,7 @@ public:
* @param classname Name of the class
* @param flags Is this a public method?
*/
- virtual void fill(struct _zend_function_entry *entry, const char *classname, int flags) {};
+ virtual void fill(struct _zend_function_entry *entry, const char *classname, MemberModifier flags) {};
};
/**