summaryrefslogtreecommitdiff
path: root/libvaladoc
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2020-10-19 13:51:58 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2020-10-19 13:51:58 +0200
commitea14503eff943dbb9aa6014486e6d4e1d83cebaa (patch)
tree6aeb8a82721d95264dd1c9aaee69c4a7d6279019 /libvaladoc
parentb8bc5e2e44698cef18fa4378deafd737297fb65e (diff)
downloadvala-ea14503eff943dbb9aa6014486e6d4e1d83cebaa.tar.gz
libvaladoc: Don't filter-out generic type-parameters of delegates
Diffstat (limited to 'libvaladoc')
-rw-r--r--libvaladoc/api/delegate.vala2
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;