Changeset cf3da24 for src/Concurrency


Ignore:
Timestamp:
Oct 10, 2023, 11:42:38 AM (7 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
4604bf5
Parents:
ee9ad40
Message:

Fixed up some whitespace. Pretty minor stuff mostly.

Location:
src/Concurrency
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Concurrency/Corun.cpp

    ree9ad40 rcf3da24  
    4242
    4343    Stmt * postvisit( const CorunStmt * stmt ) {
    44         if ( !runnerBlockDecl ) 
     44        if ( !runnerBlockDecl )
    4545            SemanticError( stmt->location, "To use corun statements add #include <cofor.hfa>\n" );
    4646
    4747        if ( !stmt->stmt )
    4848            return nullptr;
    49        
     49
    5050        const CodeLocation & loc = stmt->location;
    5151        const string fnName = CorunFnNamer.newName();
     
    7676        // __CFA_corun_block_{ __CFA_corun_lambda_ };
    7777        Stmt * threadStart = new ExprStmt( loc,
    78             new UntypedExpr ( loc, 
     78            new UntypedExpr ( loc,
    7979                new NameExpr( loc, "?{}" ),
    8080                {
  • src/Concurrency/Corun.hpp

    ree9ad40 rcf3da24  
    1616#pragma once
    1717
    18 
    19 class Declaration;
    2018namespace ast {
    2119        class TranslationUnit;
Note: See TracChangeset for help on using the changeset viewer.