diff options
author | Rico Tzschichholz <ricotz@ubuntu.com> | 2020-10-19 13:51:58 +0200 |
---|---|---|
committer | Rico Tzschichholz <ricotz@ubuntu.com> | 2020-10-19 13:51:58 +0200 |
commit | ea14503eff943dbb9aa6014486e6d4e1d83cebaa (patch) | |
tree | 6aeb8a82721d95264dd1c9aaee69c4a7d6279019 /libvaladoc | |
parent | b8bc5e2e44698cef18fa4378deafd737297fb65e (diff) | |
download | vala-ea14503eff943dbb9aa6014486e6d4e1d83cebaa.tar.gz |
libvaladoc: Don't filter-out generic type-parameters of delegates
Diffstat (limited to 'libvaladoc')
-rw-r--r-- | libvaladoc/api/delegate.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvaladoc/api/delegate.vala b/libvaladoc/api/delegate.vala index 8987b0356..5dabf475d 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; |