Changeset 02c80cdc for src/Tuples
- Timestamp:
- Apr 19, 2024, 11:30:55 AM (23 months ago)
- Branches:
- master, stuck-waitfor-destruct
- Children:
- 358e1152, 4e08a54
- Parents:
- d4264e8 (diff), 19313be5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/Tuples/TupleExpansion.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Tuples/TupleExpansion.cpp
rd4264e8 r02c80cdc 106 106 assignUnq = commaExpr->arg1; 107 107 } 108 auto finished = new ast::ObjectDecl( loc, toString( "_unq", id, "_finished_" ), new ast::BasicType( ast::Basic Type::Kind::Bool ),108 auto finished = new ast::ObjectDecl( loc, toString( "_unq", id, "_finished_" ), new ast::BasicType( ast::BasicKind::Bool ), 109 109 new ast::SingleInit( loc, ast::ConstantExpr::from_int( loc, 0 ) ), {}, ast::Linkage::Cforall ); 110 110 declsToAddBefore.push_back( finished ); … … 175 175 new ast::ObjectDecl( location, 176 176 "dummy", 177 new ast::BasicType( ast::Basic Type::SignedInt ),177 new ast::BasicType( ast::BasicKind::SignedInt ), 178 178 nullptr, 179 179 ast::Storage::Classes(),
Note:
See TracChangeset
for help on using the changeset viewer.