From: Rico Tzschichholz Date: Mon, 19 Oct 2020 11:51:58 +0000 (+0200) Subject: libvaladoc: Don't filter-out generic type-parameters of delegates X-Git-Tag: 0.40.25~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=002fbc6c02d8b1a8d86d1c8d7b41ff82a370561b;p=thirdparty%2Fvala.git libvaladoc: Don't filter-out generic type-parameters of delegates --- diff --git a/libvaladoc/api/delegate.vala b/libvaladoc/api/delegate.vala index 9db4d9f10..2eaf4c24b 100644 --- a/libvaladoc/api/delegate.vala +++ b/libvaladoc/api/delegate.vala @@ -96,7 +96,7 @@ public class Valadoc.Api.Delegate : TypeSymbol, Callable { signature.append_content (return_type.signature); signature.append_symbol (this); - var type_parameters = get_children_by_type (NodeType.TYPE_PARAMETER); + var type_parameters = get_children_by_type (NodeType.TYPE_PARAMETER, false); if (type_parameters.size > 0) { signature.append ("<", false); bool first = true;