Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/InitTweak/InitTweak.cc

    r3cc1111 r02f4eb8  
    99// Author           : Rob Schluntz
    1010// Created On       : Fri May 13 11:26:36 2016
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Fri Nov 19 19:22:00 2021
    13 // Update Count     : 19
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Wed Jun 16 20:57:22 2021
     13// Update Count     : 18
    1414//
    1515
     
    540540        }
    541541
    542         const ast::Type * getTypeofThis( const ast::FunctionType * ftype ) {
    543                 assertf( ftype, "getTypeofThis: nullptr ftype" );
    544                 const std::vector<ast::ptr<ast::Type>> & params = ftype->params;
    545                 assertf( !params.empty(), "getTypeofThis: ftype with 0 parameters: %s",
    546                                 toString( ftype ).c_str() );
    547                 const ast::ReferenceType * refType =
    548                         params.front().strict_as<ast::ReferenceType>();
    549                 return refType->base;
    550         }
    551 
    552542        ObjectDecl * getParamThis( FunctionType * ftype ) {
    553543                assertf( ftype, "getParamThis: nullptr ftype" );
Note: See TracChangeset for help on using the changeset viewer.