eina_cxx: allow for the generation of function that return Eina_Promise in .eo files.

Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Differential Revision: https://phab.enlightenment.org/D7576
This commit is contained in:
Cedric BAIL 2019-01-04 17:39:11 -08:00
parent 1bbe4ceb5c
commit 40ca3fbe58
1 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,10 @@ struct malloc_deleter
{
// how to free binbuf?
}
void operator()(Eina_Promise*) const
{
// workaround until we manually handle efl_loop_promise_new
}
};
template <typename T>