Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Type.cpp

    rcd59d28 r3e5dd913  
    105105}
    106106
    107 // --- BaseInstType
    108 
    109107std::vector<readonly<Decl>> BaseInstType::lookup( const std::string& name ) const {
    110108        assertf( aggr(), "Must have aggregate to perform lookup" );
     
    121119template<typename decl_t>
    122120SueInstType<decl_t>::SueInstType(
    123         const base_type * b, CV::Qualifiers q, std::vector<ptr<Attribute>>&& as )
    124 : BaseInstType( b->name, q, std::move(as) ), base( b ) {}
     121        const decl_t * b, CV::Qualifiers q, std::vector<ptr<Attribute>>&& as )
     122: BaseInstType( b->name, q, move(as) ), base( b ) {}
    125123
    126124template<typename decl_t>
     
    144142        const TraitDecl * b, CV::Qualifiers q, std::vector<ptr<Attribute>>&& as )
    145143: BaseInstType( b->name, q, move(as) ), base( b ) {}
    146 
    147 // --- TypeInstType
    148144
    149145void TypeInstType::set_base( const TypeDecl * b ) {
Note: See TracChangeset for help on using the changeset viewer.