Changeset 14cebb7a for src/AST/Label.hpp


Ignore:
Timestamp:
May 10, 2019, 9:31:29 AM (5 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
36354b1
Parents:
77a3f41
Message:

Removed trailing white-space in AST.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Label.hpp

    r77a3f41 r14cebb7a  
    3434                std::vector< ptr<Attribute> > attributes;
    3535
    36                 Label( CodeLocation loc, const std::string& name = "", 
     36                Label( CodeLocation loc, const std::string& name = "",
    3737                        const std::vector<ptr<Attribute>>& attrs = std::vector<ptr<Attribute>>{} )
    3838                : location( loc ), name( name ), attributes( attrs ) {}
     
    4747
    4848        inline std::ostream& operator<< ( std::ostream& out, const Label& l ) { return out << l.name; }
    49        
     49
    5050}
    5151
Note: See TracChangeset for help on using the changeset viewer.