Changes in src/Common/PassVisitor.impl.h [d55d7a6:834b892]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.impl.h
rd55d7a6 r834b892 77 77 maybeAccept_impl( *i, visitor ); 78 78 } catch( SemanticError &e ) { 79 e.set_location( (*i)->location ); 79 80 errors.append( e ); 80 81 } … … 103 104 maybeMutate_impl( *i, mutator ); 104 105 } catch( SemanticError &e ) { 106 e.set_location( (*i)->location ); 105 107 errors.append( e ); 106 108 } … … 132 134 } 133 135 } catch( SemanticError &e ) { 136 e.set_location( (*i)->location ); 134 137 errors.append( e ); 135 138 } … … 160 163 } // if 161 164 } catch( SemanticError &e ) { 165 e.set_location( (*i)->location ); 162 166 errors.append( e ); 163 167 } // try … … 196 200 197 201 } catch ( SemanticError &e ) { 202 e.set_location( (*i)->location ); 198 203 errors.append( e ); 199 204 }
Note:
See TracChangeset
for help on using the changeset viewer.