Ignore:
Timestamp:
May 22, 2019, 5:47:36 PM (5 years ago)
Author:
Aaron Moss <a3moss@…>
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:
c957e7f
Parents:
722c4831
Message:

Changed Attribute field to params

Done for consistency with other field names.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Attribute.hpp

    r722c4831 r489bacf  
    3030public:
    3131        std::string name;
    32         std::vector<ptr<Expr>> parameters;
     32        std::vector<ptr<Expr>> params;
    3333
    3434        Attribute( const std::string & name = "", std::vector<ptr<Expr>> && params = {})
    35         : name( name ), parameters( params ) {}
     35        : name( name ), params( params ) {}
    3636        virtual ~Attribute() = default;
    3737
Note: See TracChangeset for help on using the changeset viewer.