summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2013-11-08 16:21:01 +0000
committerTom Hacohen <tom@stosb.com>2013-11-08 16:21:01 +0000
commit1968b20497d5af2cbbb4d9a756ccbd2a36106f9d (patch)
treeb03d83f2678374f9fbedd0cdd9bf2bbae0a1d918
parent326488ba19403577ac884b66e2d766b34ae40eee (diff)
downloadefl-1968b20497d5af2cbbb4d9a756ccbd2a36106f9d.tar.gz
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.
-rw-r--r--src/lib/eo/Eo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eo/Eo.h b/src/lib/eo/Eo.h
index eab1b23c30..27d3b24f1c 100644
--- a/src/lib/eo/Eo.h
+++ b/src/lib/eo/Eo.h
@@ -736,7 +736,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)
/*****************************************************************************/