Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Pass.impl.hpp

    rd0bdb18 re4d7c1c  
    810810
    811811//--------------------------------------------------------------------------
    812 // InlineMemberDecl
     812// DeclWithType
    813813template< typename core_t >
    814814const ast::DeclWithType * ast::Pass< core_t >::visit( const ast::InlineMemberDecl * node ) {
     
    836836                        if ( enterScope ) {
    837837                                __pass::symtab::enter(core, 0);
     838                                __pass::scope::enter(core, 0);
    838839                        }
    839840                }, [this, leaveScope = !this->atFunctionTop]() {
    840841                        if ( leaveScope ) {
    841842                                __pass::symtab::leave(core, 0);
     843                                __pass::scope::leave(core, 0);
    842844                        }
    843845                });
Note: See TracChangeset for help on using the changeset viewer.