]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
libvaladoc: Don't filter-out generic type-parameters of delegates
authorRico Tzschichholz <ricotz@ubuntu.com>
Mon, 19 Oct 2020 11:51:58 +0000 (13:51 +0200)
committerRico Tzschichholz <ricotz@ubuntu.com>
Mon, 19 Oct 2020 11:51:58 +0000 (13:51 +0200)
libvaladoc/api/delegate.vala

index 8987b0356ca9f2042eef03ddd1c53ae5cfc019d7..5dabf475d44f12c3922f5ce2eb5ed85d0dfcca36 100644 (file)
@@ -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;