From f445a350207d00950d1b1dd08dab62251e26d11e Mon Sep 17 00:00:00 2001 From: heck Date: Fri, 16 Jun 2023 13:20:36 +0200 Subject: [PATCH] idl-api: support recursive resolving of type (in case of typekind deftype) its not a problem at all --- idl/idl_api.ysl2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idl/idl_api.ysl2 b/idl/idl_api.ysl2 index 532ce83..a93ecac 100644 --- a/idl/idl_api.ysl2 +++ b/idl/idl_api.ysl2 @@ -90,7 +90,7 @@ def "func:idl_type_get_resolved_type" { choose { when "$idltypekind = 'deftype'" - result "func:idl_type_get_type_of_deftype($idltype)"; + result "func:idl_type_get_resolved_type(func:idl_type_get_type_of_deftype($idltype))"; otherwise result "$idltype"; }