Changeset 4e08a54 for src/Tuples
- Timestamp:
- Apr 19, 2024, 12:01:34 PM (23 months ago)
- Branches:
- master, stuck-waitfor-destruct
- Children:
- b9b6efb
- Parents:
- da87eaf (diff), 02c80cdc (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
rda87eaf r4e08a54 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
rda87eaf r4e08a54 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
rda87eaf r4e08a54 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.