Changeset f48dfcd
- Timestamp:
- Nov 24, 2023, 4:08:24 PM (13 months ago)
- Branches:
- master
- Children:
- 6a1f553
- Parents:
- 3c4003b9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/BoxNew.cpp
r3c4003b9 rf48dfcd 16 16 #include "Box.h" 17 17 18 #include "AST/Chain.hpp" // for chain_mutate19 18 #include "AST/Decl.hpp" // for Decl, FunctionDecl, ... 20 19 #include "AST/Expr.hpp" // for AlignofExpr, ConstantExpr, ... … … 1436 1435 ast::FunctionType * type = new ast::FunctionType( 1437 1436 mutDecl->type->isVarArgs, mutDecl->type->qualifiers ); 1437 // The forall clauses don't match until Eraser. The assertions are empty. 1438 1438 for ( auto param : mutDecl->params ) { 1439 1439 type->params.emplace_back( param->get_type() ); … … 2213 2213 auto mutDecl = mutate( decl ); 2214 2214 mutDecl->type_params.clear(); 2215 ast::chain_mutate( mutDecl->type )->forall.clear();2216 2215 return mutDecl; 2217 2216 }
Note: See TracChangeset
for help on using the changeset viewer.