diff options
Diffstat (limited to 'src/convert/ast_iterate.cpp')
-rw-r--r-- | src/convert/ast_iterate.cpp | 3 |
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); } } |