- Timestamp:
 - Jan 28, 2022, 2:49:08 PM (4 years ago)
 - Branches:
 - ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
 - Children:
 - cef7430
 - Parents:
 - 97fed44
 - File:
 - 
      
- 1 edited
 
- 
          
  src/AST/Pass.impl.hpp (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
src/AST/Pass.impl.hpp
r97fed44 r6b2d444 1050 1050 VISIT_START( node ); 1051 1051 1052 VISIT({ 1053 // mutex statements introduce a level of scope (for the initialization) 1054 guard_symtab guard { *this }; 1055 maybe_accept( node, &MutexStmt::stmt ); 1052 VISIT( 1056 1053 maybe_accept( node, &MutexStmt::mutexObjs ); 1057 }) 1054 { 1055 // mutex statements introduce a level of scope (for the initialization) 1056 guard_symtab guard { *this }; 1057 maybe_accept( node, &MutexStmt::stmt ); 1058 1059 } 1060 ) 1058 1061 1059 1062 VISIT_END( Stmt, node );  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.