Changeset 38093ae for src/Tuples
- Timestamp:
- Apr 18, 2024, 8:44:24 PM (20 months ago)
- Branches:
- master
- Children:
- 19313be5, cf191ac
- Parents:
- 748c751 (diff), 7a780ad (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. - Location:
- src/Tuples
- Files:
-
- 3 edited
-
TupleAssignment.cc (modified) (1 diff)
-
TupleExpansion.cpp (modified) (2 diffs)
-
Tuples.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Tuples/TupleAssignment.cc
r748c751 r38093ae 35 35 #include "InitTweak/GenInit.h" // for genCtorInit 36 36 #include "InitTweak/InitTweak.h" // for getPointerBase, isAssignment 37 #include "ResolvExpr/CandidateFinder.hpp" // for CandidateFinder 37 38 #include "ResolvExpr/Cost.h" // for Cost 38 39 #include "ResolvExpr/Resolver.h" // for resolveCtorInit -
src/Tuples/TupleExpansion.cpp
r748c751 r38093ae 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(), -
src/Tuples/Tuples.h
r748c751 r38093ae 21 21 #include "AST/Fwd.hpp" 22 22 #include "AST/Node.hpp" 23 #include "ResolvExpr/CandidateFinder.hpp" 23 namespace ResolvExpr { 24 class CandidateFinder; 25 } 24 26 25 27 namespace Tuples {
Note:
See TracChangeset
for help on using the changeset viewer.