Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Virtual/Tables.cpp

    r5f225f5 r3e135c8  
    122122                        ) );
    123123                }
    124                 //ast::Expr * expr = buildInitExpr(...);
    125                 //inits.push_back( new ast::SingleInit( location, expr ) )
    126124        }
    127125
     
    162160        assert( vtableType );
    163161        assert( exceptType );
     162
     163        // If this is called after Fix Return Statements (currently it is in
     164        // Implement Concurrent Keywords) then this must be marked as unused
     165        // to avoid warnings.
     166        ast::ObjectDecl * frontRet = new ast::ObjectDecl( location,
     167                "_retvalue",
     168                new ast::ReferenceType( vtableType )
     169        );
     170        frontRet->attributes.emplace_back( new ast::Attribute( "unused" ) );
     171
    164172        return new ast::FunctionDecl(
    165173                location,
     
    170178                        new ast::PointerType( exceptType )
    171179                ) },
    172                 { new ast::ObjectDecl(
    173                         location,
    174                         "_retvalue",
    175                         new ast::ReferenceType( vtableType )
    176                 ) },
     180                { frontRet },
    177181                nullptr,
    178182                ast::Storage::Classes(),
Note: See TracChangeset for help on using the changeset viewer.