eo-cxx: Fix ompilation error for uncomplete Eina_Future type
authorFelipe Magno de Almeida <felipe@expertisesolutions.com.br>
Wed, 6 Sep 2017 08:03:03 +0000 (17:03 +0900)
committerFelipe Magno de Almeida <felipe@expertisesolutions.com.br>
Wed, 6 Sep 2017 08:03:36 +0000 (17:03 +0900)
src/bindings/cxx/eina_cxx/eina_deleter.hh

index 2520f5d..f88efd3 100644 (file)
@@ -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?