Ignore:
Timestamp:
Jun 14, 2018, 5:35:09 PM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
47498bd
Parents:
c5d7701
Message:

Minor cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/TypeData.cc

    rc5d7701 r704d11e  
    893893        assert( td->kind == TypeData::Function );
    894894        FunctionType * ft = new FunctionType( buildQualifiers( td ), ! td->function.params || td->function.params->hasEllipsis );
    895         buildList( td->function.params, ft->get_parameters() );
    896         buildForall( td->forall, ft->get_forall() );
     895        buildList( td->function.params, ft->parameters );
     896        buildForall( td->forall, ft->forall );
    897897        if ( td->base ) {
    898898                switch ( td->base->kind ) {
    899899                  case TypeData::Tuple:
    900                         buildList( td->base->tuple, ft->get_returnVals() );
     900                        buildList( td->base->tuple, ft->returnVals );
    901901                        break;
    902902                  default:
Note: See TracChangeset for help on using the changeset viewer.