summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-07-31 10:01:52 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2013-07-31 10:01:52 +0200
commit396419a542b8f6acc2a80ebd90e56ab62fd86d2d (patch)
tree3f94499e155ee85ed233c8876f3fba1f69feabc6
parent6d5cea0ab1ba0612b2ae5ccdb51637dddc31e340 (diff)
downloadefl-396419a542b8f6acc2a80ebd90e56ab62fd86d2d.tar.gz
fix eo2_simple pure virtual
-rw-r--r--eo2test/eo2_simple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eo2test/eo2_simple.c b/eo2test/eo2_simple.c
index db10e62367..a710008540 100644
--- a/eo2test/eo2_simple.c
+++ b/eo2test/eo2_simple.c
@@ -64,7 +64,7 @@ static Eo2_Op_Description op_descs [] = {
EO2_OP_FUNC(_get, eo2_get, "Get X"),
EO2_OP_FUNC(_set, eo2_set, "Set X"),
EO2_OP_CLASS_FUNC(_class_hello, eo2_class_hello, "Class says hello"),
- EO2_OP_FUNC_VIRTUAL(eo2_virtual, "Virtual Func"),
+ EO2_OP_FUNC(NULL, eo2_virtual, "Virtual Func"),
EO2_OP_SENTINEL
};