Fix semantic merge conflict in previous two merged PRs

This commit is contained in:
Zachary Snow 2023-07-21 00:08:10 -04:00
parent 72a4022a10
commit d5d2bf815a
1 changed files with 1 additions and 1 deletions

View File

@ -1455,7 +1455,7 @@ bool AstNode::simplify(bool const_fold, bool in_lvalue, int stage, int width_hin
AstNode *template_node = resolved_type_node->children[0];
// Ensure typedef itself is fully simplified
while (template_node->simplify(const_fold, at_zero, in_lvalue, stage, width_hint, sign_hint, in_param)) {};
while (template_node->simplify(const_fold, in_lvalue, stage, width_hint, sign_hint, in_param)) {};
// Remove type reference
delete children[0];