Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Mangler.cc

    r0522ebe r8984003  
    5959        void postvisit( const ast::QualifiedType * qualType );
    6060
    61         void postvisit( const ast::EnumPosType * posType );
    62 
    6361        /// The result is the current constructed mangled name.
    6462        std::string result() const { return mangleName; }
     
    279277        assertf( decl->kind < ast::TypeDecl::Kind::NUMBER_OF_KINDS, "Unhandled type variable kind: %d", decl->kind );
    280278        mangleName += Encoding::typeVariables[ decl->kind ] + std::to_string( decl->name.length() ) + decl->name;
    281 }
    282 
    283 void Mangler::postvisit( const ast::EnumPosType * pos ) {
    284         postvisit( pos->instance );
    285         mangleName += "_pos";
    286279}
    287280
Note: See TracChangeset for help on using the changeset viewer.