felipealmeida pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=1cfc96dd5b641277299931274b5c745114c42133

commit 1cfc96dd5b641277299931274b5c745114c42133
Author: Felipe Magno de Almeida <fel...@expertisesolutions.com.br>
Date:   Wed Sep 6 17:03:03 2017 +0900

    eo-cxx: Fix ompilation error for uncomplete Eina_Future type
---
 src/bindings/cxx/eina_cxx/eina_deleter.hh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/bindings/cxx/eina_cxx/eina_deleter.hh 
b/src/bindings/cxx/eina_cxx/eina_deleter.hh
index 2520f5d078..f88efd309d 100644
--- a/src/bindings/cxx/eina_cxx/eina_deleter.hh
+++ b/src/bindings/cxx/eina_cxx/eina_deleter.hh
@@ -15,6 +15,10 @@ struct malloc_deleter
     object->~T();
     free(object);
   }
+  void operator()(Eina_Future*) const
+  {
+    // workaround until we substitute Efl_Future with Eina_Future
+  }
   void operator()(Eina_Binbuf* /*object*/) const
   {
     // how to free binbuf?

-- 


Reply via email to