tasn pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=7f932c8c143f5f30aaec3104859dce8957cc3b01

commit 7f932c8c143f5f30aaec3104859dce8957cc3b01
Author: Tom Hacohen <t...@stosb.com>
Date:   Thu May 21 11:33:40 2015 +0100

    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.
---
 src/tests/eina_cxx/eina_cxx_test_ptrlist.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/tests/eina_cxx/eina_cxx_test_ptrlist.cc 
b/src/tests/eina_cxx/eina_cxx_test_ptrlist.cc
index 9e5fa2b..1f6144d 100644
--- a/src/tests/eina_cxx/eina_cxx_test_ptrlist.cc
+++ b/src/tests/eina_cxx/eina_cxx_test_ptrlist.cc
@@ -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

-- 


Reply via email to