Changeset c0f9efe for src/AST/Type.hpp


Ignore:
Timestamp:
Jun 19, 2019, 6:05:12 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:
234b1cb, 3c6e417
Parents:
b69233ac (diff), 1ae47de (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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Type.hpp

    rb69233ac rc0f9efe  
    3939        std::vector<ptr<Attribute>> attributes;
    4040
    41         Type( CV::Qualifiers q = {}, std::vector<ptr<Attribute>> && as = {} ) 
     41        Type( CV::Qualifiers q = {}, std::vector<ptr<Attribute>> && as = {} )
    4242        : qualifiers(q), attributes(std::move(as)) {}
    4343
     
    270270        ForallList forall;
    271271
    272         ParameterizedType( ForallList&& fs = {}, CV::Qualifiers q = {}, 
     272        ParameterizedType( ForallList&& fs = {}, CV::Qualifiers q = {},
    273273                std::vector<ptr<Attribute>> && as = {} )
    274274        : Type(q, std::move(as)), forall(std::move(fs)) {}
    275        
    276         ParameterizedType( CV::Qualifiers q, std::vector<ptr<Attribute>> && as = {} ) 
     275
     276        ParameterizedType( CV::Qualifiers q, std::vector<ptr<Attribute>> && as = {} )
    277277        : Type(q, std::move(as)), forall() {}
    278278
Note: See TracChangeset for help on using the changeset viewer.