Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/GenPoly/Lvalue.cpp

    rb6f2e7ab r97f8f0f  
    607607ast::SizeofExpr const * ReferenceTypeElimination::previsit(
    608608                ast::SizeofExpr const * expr ) {
     609        if ( expr->expr ) return expr;
    609610        return ast::mutate_field( expr, &ast::SizeofExpr::type,
    610611                expr->type->stripReferences() );
     
    613614ast::AlignofExpr const * ReferenceTypeElimination::previsit(
    614615                ast::AlignofExpr const * expr ) {
     616        if ( expr->expr ) return expr;
    615617        return ast::mutate_field( expr, &ast::AlignofExpr::type,
    616618                expr->type->stripReferences() );
Note: See TracChangeset for help on using the changeset viewer.