Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Concurrency/Actors.cpp

    r37273c8 rb065dbb  
    265265                decl->location,
    266266                "__CFA_receive_wrap",
     267                {},                     // forall
    267268                {
    268269                    new ObjectDecl(
     
    287288                    )
    288289                },                      // params
    289                 {
     290                { 
    290291                    new ObjectDecl(
    291292                        decl->location,
     
    399400                                )
    400401                        ));
    401 
     402           
    402403            // Generates: return receiver;
    403404            sendBody->push_back( new ReturnStmt( decl->location, new NameExpr( decl->location, "receiver" ) ) );
     
    407408                decl->location,
    408409                "?|?",
     410                {},                     // forall
    409411                {
    410412                    new ObjectDecl(
     
    419421                    )
    420422                },                      // params
    421                 {
     423                { 
    422424                    new ObjectDecl(
    423425                        decl->location,
     
    432434                { Function::Inline }
    433435            );
    434 
     436           
    435437            // forward decls to resolve use before decl problem for '|' routines
    436438            forwardDecls.insertDecl( *actorIter, *messageIter , ast::deepCopy( sendOperatorFunction ) );
Note: See TracChangeset for help on using the changeset viewer.