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/Tuples/AssignExpand.cc

    rb87a5ed ra32b204  
    2424    CompoundStmt *newSt = 0;
    2525    if (! extra.empty() ) {
    26       if ( !newSt )
     26      if ( ! newSt )
    2727        newSt= new CompoundStmt(std::list<Label>());
    2828
     
    3131
    3232    if (! extra2.empty() ) {
    33       if ( !newSt )
     33      if ( ! newSt )
    3434        newSt= new CompoundStmt(std::list<Label>());
    3535
     
    3838
    3939    if (! replace.empty() ) {
    40       if ( !newSt )
     40      if ( ! newSt )
    4141        newSt= new CompoundStmt(std::list<Label>());
    4242
     
    4545    }
    4646
    47     if( newSt ) return newSt; else return exprStmt;
     47    if ( newSt ) return newSt; else return exprStmt;
    4848  }
    4949
     
    7272                   tupleExpr->get_type() == SolvedTupleExpr::MASS ) */ {
    7373      std::list<Expression *> &comps = tupleExpr->get_exprs();
    74       for( std::list<Expression *>::iterator i = comps.begin(); i != comps.end(); ++i ) {
     74      for ( std::list<Expression *>::iterator i = comps.begin(); i != comps.end(); ++i ) {
    7575        std::list<Statement *> decls;
    7676        std::list<Statement *> temps;
    7777        std::list<Statement *> assigns;
    78         if( ApplicationExpr *app = dynamic_cast< ApplicationExpr * >(*i) ) {
     78        if ( ApplicationExpr *app = dynamic_cast< ApplicationExpr * >(*i) ) {
    7979          assert( app->get_args().size() == 2 );
    8080
Note: See TracChangeset for help on using the changeset viewer.