Changeset 0f6a7752 for src/AST/Type.hpp


Ignore:
Timestamp:
Jun 24, 2019, 2:28:10 PM (5 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
093a5d7
Parents:
08c0780
Message:

Put in temporary patch to finish new resolver port

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Type.hpp

    r08c0780 r0f6a7752  
    164164        static const char *typeNames[];
    165165
    166         BasicType( Kind k, CV::Qualifiers q = {} ) : Type(q), kind(k) {}
     166        BasicType( Kind k, CV::Qualifiers q = {}, std::vector<ptr<Attribute>> && as = {} )
     167        : Type(q, std::move(as)), kind(k) {}
    167168
    168169        /// Check if this type represents an integer type
Note: See TracChangeset for help on using the changeset viewer.