Changeset 29075d1 for src/Concurrency/Actors.cpp
- Timestamp:
- Nov 18, 2024, 10:07:39 PM (13 months ago)
- Branches:
- master
- Children:
- 7c80a86, ecf3812
- Parents:
- 1b39705 (diff), ed96731 (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/Concurrency/Actors.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Concurrency/Actors.cpp
r1b39705 r29075d1 194 194 // collects data needed for next pass that does the circular defn resolution 195 195 // for message send operators (via table above) 196 struct GenFuncsCreateTables : public ast::WithDeclsToAdd <>{196 struct GenFuncsCreateTables : public ast::WithDeclsToAdd { 197 197 unordered_set<const StructDecl *> & actorStructDecls; 198 198 unordered_set<const StructDecl *> & messageStructDecls; … … 451 451 // separate pass is needed since this pass resolves circular defn issues 452 452 // generates the forward declarations of the send operator for actor routines 453 struct FwdDeclOperator : public ast::WithDeclsToAdd <>{453 struct FwdDeclOperator : public ast::WithDeclsToAdd { 454 454 unordered_set<const StructDecl *> & actorStructDecls; 455 455 unordered_set<const StructDecl *> & messageStructDecls;
Note:
See TracChangeset
for help on using the changeset viewer.