Changeset b230091 for src/AST/Type.cpp


Ignore:
Timestamp:
Mar 29, 2022, 4:09:51 PM (2 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
Children:
6e47b49
Parents:
dfd3410
Message:

Added a 'missing' TypeInstType? constructor and rewrote some calls to use it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Type.cpp

    rdfd3410 rb230091  
    147147// --- TypeInstType
    148148
     149TypeInstType::TypeInstType( const TypeDecl * b,
     150        CV::Qualifiers q, std::vector<ptr<Attribute>> && as )
     151: BaseInstType( b->name, q, move(as) ), base( b ), kind( b->kind ) {}
     152
    149153void TypeInstType::set_base( const TypeDecl * b ) {
    150154        base = b;
Note: See TracChangeset for help on using the changeset viewer.