Changeset 91a72ef for src/AST/Eval.hpp


Ignore:
Timestamp:
Jan 18, 2022, 9:53:57 AM (3 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
Children:
175f9f4
Parents:
f55f110
Message:

Some assorted bits of clean-up. InitializerLength? was missing some pieces. Other than that it is white space fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Eval.hpp

    rf55f110 r91a72ef  
    2424template< typename... Args >
    2525UntypedExpr * call( const CodeLocation & loc, const std::string & name, Args &&... args ) {
    26         return new UntypedExpr { 
    27                 loc, new NameExpr { loc, name }, 
     26        return new UntypedExpr {
     27                loc, new NameExpr { loc, name },
    2828                std::vector< ptr< Expr > > { std::forward< Args >( args )... } };
    2929}
Note: See TracChangeset for help on using the changeset viewer.