Changes in src/AST/Label.hpp [2bb4a01:14cebb7a]
- File:
-
- 1 edited
-
src/AST/Label.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Label.hpp
r2bb4a01 r14cebb7a 34 34 std::vector< ptr<Attribute> > attributes; 35 35 36 Label( CodeLocation loc, const std::string& name = "", 36 Label( CodeLocation loc, const std::string& name = "", 37 37 const std::vector<ptr<Attribute>>& attrs = std::vector<ptr<Attribute>>{} ) 38 38 : location( loc ), name( name ), attributes( attrs ) {} … … 47 47 48 48 inline std::ostream& operator<< ( std::ostream& out, const Label& l ) { return out << l.name; } 49 49 50 50 } 51 51
Note:
See TracChangeset
for help on using the changeset viewer.