eo-cxx: Fix ompilation error for uncomplete Eina_Future type

This commit is contained in:
Felipe Magno de Almeida 2017-09-06 17:03:03 +09:00
parent ab3d082208
commit 1cfc96dd5b
1 changed files with 4 additions and 0 deletions

View 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?