Eina cxx tests: Fix the failing tests.

This broke following my eo_constructor() changes. This is weird though
as:
1. Eina doesn't depend on Eo.
2. It was casting the constructor for some reasons.

Anyhow, fixed now.
This commit is contained in:
Tom Hacohen 2015-05-21 11:33:40 +01:00
parent 1d4c028034
commit 7f932c8c14
1 changed files with 2 additions and 2 deletions

View File

@ -16,10 +16,10 @@
const Eo_Class *simple_class_get(void);
#define MY_CLASS simple_class_get()
static void
static Eo *
_constructor(Eo *obj, void *class_data EINA_UNUSED)
{
eo_do_super(obj, MY_CLASS, eo_constructor());
return eo_do_super_ret(obj, MY_CLASS, obj, eo_constructor());
}
static void