From 7c3f7e9b5b80c2c7e3f52881d980fd516755215a Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Fri, 8 Nov 2013 16:21:01 +0000 Subject: [PATCH] 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. --- src/lib/eo/Eo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eo/Eo.h b/src/lib/eo/Eo.h index f53907d731..011ff57158 100644 --- a/src/lib/eo/Eo.h +++ b/src/lib/eo/Eo.h @@ -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) /*****************************************************************************/