Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/InitTweak.cc

    r335d81f r6f096d2  
    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 Jun 19 14:34:00 2019
    13 // Update Count     : 6
     11// Last Modified By : Aaron B. Moss
     12// Last Modified On : Mon Jun 10 13:30:00 2019
     13// Update Count     : 5
    1414//
    1515
     
    633633                        return nullptr;
    634634                }
    635 
    636                 DeclarationWithType * getFunctionCore( const Expression * expr ) {
    637                         if ( const auto * appExpr = dynamic_cast< const ApplicationExpr * >( expr ) ) {
    638                                 return getCalledFunction( appExpr->function );
    639                         } else if ( const auto * untyped = dynamic_cast< const UntypedExpr * >( expr ) ) {
    640                                 return getCalledFunction( untyped->function );
    641                         }
    642                         assertf( false, "getFunction with unknown expression: %s", toString( expr ).c_str() );
    643                 }
    644635        }
    645636
    646637        DeclarationWithType * getFunction( Expression * expr ) {
    647                 return getFunctionCore( expr );
    648         }
    649 
    650         const DeclarationWithType * getFunction( const Expression * expr ) {
    651                 return getFunctionCore( expr );
     638                if ( ApplicationExpr * appExpr = dynamic_cast< ApplicationExpr * >( expr ) ) {
     639                        return getCalledFunction( appExpr->get_function() );
     640                } else if ( UntypedExpr * untyped = dynamic_cast< UntypedExpr * > ( expr ) ) {
     641                        return getCalledFunction( untyped->get_function() );
     642                }
     643                assertf( false, "getFunction received unknown expression: %s", toString( expr ).c_str() );
    652644        }
    653645
Note: See TracChangeset for help on using the changeset viewer.