Ignore:
Timestamp:
May 17, 2015, 1:19:35 PM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
0dd3a2f
Parents:
b87a5ed
Message:

licencing: second groups of files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • translator/GenPoly/FindFunction.cc

    rb87a5ed ra32b204  
    5252FindFunction::handleForall( const std::list< TypeDecl* > &forall )
    5353{
    54   for( std::list< TypeDecl* >::const_iterator i = forall.begin(); i != forall.end(); ++i ) {
     54  for ( std::list< TypeDecl* >::const_iterator i = forall.begin(); i != forall.end(); ++i ) {
    5555    TyVarMap::iterator var = tyVars.find( (*i)->get_name() );
    56     if( var != tyVars.end() ) {
     56    if ( var != tyVars.end() ) {
    5757      tyVars.erase( var );
    5858    }
     
    6767  mutateAll( functionType->get_returnVals(), *this );
    6868  Type *ret = functionType;
    69   if( predicate( functionType, tyVars ) ) {
     69  if ( predicate( functionType, tyVars ) ) {
    7070    functions.push_back( functionType );
    71     if( replaceMode ) {
     71    if ( replaceMode ) {
    7272      ret = new FunctionType( Type::Qualifiers(), true );
    7373    }
Note: See TracChangeset for help on using the changeset viewer.