eolian: always validate inner types of complex types for @move

This commit is contained in:
Daniel Kolesa 2019-08-31 02:09:46 +02:00
parent 7ef3c112d4
commit 3e22ac3e1c
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ _validate_type(Validate_State *vals, Eolian_Type *tp)
tp->base.name);
return EINA_FALSE;
}
if (!_validate_type(vals, itp))
if (!_validate_type_by_ref(vals, itp, EINA_FALSE, itp->move))
return EINA_FALSE;
itp = itp->next_type;
}