summaryrefslogtreecommitdiff
path: root/src/convert/ast_iterate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/convert/ast_iterate.cpp')
-rw-r--r--src/convert/ast_iterate.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/convert/ast_iterate.cpp b/src/convert/ast_iterate.cpp
index 10eb4342..68c84a31 100644
--- a/src/convert/ast_iterate.cpp
+++ b/src/convert/ast_iterate.cpp
@@ -31,7 +31,8 @@ void CASTIterator::handle_params(AST::TypeParams& params)
}
for( auto& bound : params.bounds() )
{
- handle_type(bound.type());
+ handle_type(bound.test());
+ handle_path(bound.bound(), CASTIterator::MODE_TYPE);
}
}