Changeset a2e758e for src/AST/Attribute.hpp
- Timestamp:
- May 23, 2019, 10:42:20 AM (6 years ago)
- 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:
- 335f2d8
- Parents:
- 0b8bf27 (diff), 0b57626 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Attribute.hpp
r0b8bf27 ra2e758e 30 30 public: 31 31 std::string name; 32 std::vector<ptr<Expr>> param eters;32 std::vector<ptr<Expr>> params; 33 33 34 34 Attribute( const std::string & name = "", std::vector<ptr<Expr>> && params = {}) 35 : name( name ), param eters( params ) {}35 : name( name ), params( params ) {} 36 36 virtual ~Attribute() = default; 37 37
Note: See TracChangeset
for help on using the changeset viewer.