eo2: eo2_do_super should only have one func.

This is a limitation that must be respected as eo2_do_super, unlike
eo2_do can end up with having different next class because of mixins.
This commit is contained in:
Tom Hacohen 2013-11-08 16:21:01 +00:00
parent a62d150c96
commit 7c3f7e9b5b
1 changed files with 1 additions and 1 deletions

View File

@ -738,7 +738,7 @@ EAPI int eo2_call_stack_depth(void);
#define eo2_do(eoid, ...) _eo2_do_common(eoid, NULL, __VA_ARGS__)
#define eo2_do_super(eoid, clsid, ...) _eo2_do_common(eoid, clsid, __VA_ARGS__)
#define eo2_do_super(eoid, clsid, func) _eo2_do_common(eoid, clsid, func)
/*****************************************************************************/