Eolian: Fix support of virtual constructors.

This commit is contained in:
Daniel Zaoui 2014-05-04 09:36:02 +03:00
parent 9cd038fb36
commit 05963f4052
1 changed files with 1 additions and 1 deletions

View File

@ -526,7 +526,7 @@ eolian_class_function_find_by_name(const char *class_name, const char *func_name
}
}
if (f_type == EOLIAN_CTOR)
if (f_type == EOLIAN_UNRESOLVED || f_type == EOLIAN_CTOR)
{
EINA_LIST_FOREACH(desc->constructors, itr, foo_id)
{