Changes in src/AST/Pass.impl.hpp [d0bdb18:e4d7c1c]
- File:
-
- 1 edited
-
src/AST/Pass.impl.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.impl.hpp
rd0bdb18 re4d7c1c 810 810 811 811 //-------------------------------------------------------------------------- 812 // InlineMemberDecl812 // DeclWithType 813 813 template< typename core_t > 814 814 const ast::DeclWithType * ast::Pass< core_t >::visit( const ast::InlineMemberDecl * node ) { … … 836 836 if ( enterScope ) { 837 837 __pass::symtab::enter(core, 0); 838 __pass::scope::enter(core, 0); 838 839 } 839 840 }, [this, leaveScope = !this->atFunctionTop]() { 840 841 if ( leaveScope ) { 841 842 __pass::symtab::leave(core, 0); 843 __pass::scope::leave(core, 0); 842 844 } 843 845 });
Note:
See TracChangeset
for help on using the changeset viewer.