Changeset 514a791 for src/AST/Type.cpp


Ignore:
Timestamp:
May 21, 2019, 4:33:30 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:
a1b154d, b869ec5
Parents:
a83044fb
Message:

Fix compile errors on previous push

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Type.cpp

    ra83044fb r514a791  
    141141bool EnumInstType::isComplete() const { return base ? base->body : false; }
    142142
     143// --- TraitInstType
     144
     145TraitInstType::TraitInstType( const TraitDecl * b, CV::Qualifiers q,
     146        std::vector<ptr<Attribute>>&& as )
     147: ReferenceToType( b->name, q, std::move(as) ), base( b ) {}
     148
    143149// --- TypeInstType
    144150
Note: See TracChangeset for help on using the changeset viewer.