Changeset d06273c for src/GenPoly
- Timestamp:
- Feb 23, 2024, 10:31:08 AM (14 months ago)
- Branches:
- master
- Children:
- 4e2f1b2
- Parents:
- 2beaf9b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/GenPoly/Box.cpp ¶
r2beaf9b rd06273c 1109 1109 ); 1110 1110 1111 for ( auto group : group_iterate( realType->assertions, 1112 adapterType->assertions, adaptee->assertions ) ) { 1113 auto assertArg = std::get<0>( group ); 1114 auto assertParam = std::get<1>( group ); 1115 auto assertReal = std::get<2>( group ); 1111 for ( auto const & [assertArg, assertParam, assertReal] : group_iterate( 1112 realType->assertions, adapterType->assertions, adaptee->assertions ) ) { 1116 1113 adapteeApp->args.push_back( makeAdapterArg( 1117 1114 assertParam->var, assertArg->var->get_type(), … … 1970 1967 bool hasDynamicLayout = false; 1971 1968 1972 for ( auto pair : group_iterate( baseParams, typeParams ) ) { 1973 auto baseParam = std::get<0>( pair ); 1974 auto typeParam = std::get<1>( pair ); 1969 for ( auto const & [baseParam, typeParam] : group_iterate( 1970 baseParams, typeParams ) ) { 1975 1971 if ( !baseParam->isComplete() ) continue; 1976 1972 ast::TypeExpr const * typeExpr = typeParam.as<ast::TypeExpr>();
Note: See TracChangeset
for help on using the changeset viewer.