diff options
author | Zeev Suraski <zeev@php.net> | 2002-12-08 14:10:58 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2002-12-08 14:10:58 +0000 |
commit | 8f491470a1987013175a4b8fb43819954dc1725f (patch) | |
tree | 75b40bacc9b28d942734ea30e6708905637c1287 | |
parent | dc5c790a49f6eaa23a473c6e8a103796d0da3a21 (diff) | |
download | php-git-8f491470a1987013175a4b8fb43819954dc1725f.tar.gz |
Remove comment
-rw-r--r-- | Zend/zend_compile.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index d1a90517d3..1f1896572e 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -1575,9 +1575,6 @@ static zend_bool do_inherit_method_check(zend_function *child, zend_function *pa zend_uint child_flags = child->common.fn_flags; zend_uint parent_flags = parent->common.fn_flags; - /* we do not inherit private methods */ -/* assert(!(parent_flags & ZEND_ACC_PRIVATE)); */ - /* You cannot change from static to non static and vice versa. */ if ((child_flags & ZEND_ACC_STATIC) != (parent_flags & ZEND_ACC_STATIC)) { |