Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ExpressionNode.cc

    ra6c5d7c rbf4b4cf  
    1010// Created On       : Sat May 16 13:17:07 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Sep 27 22:51:55 2017
    13 // Update Count     : 781
     12// Last Modified On : Tue Sep 26 11:23:36 2017
     13// Update Count     : 780
    1414//
    1515
     
    8787                } else {
    8888                        assertf( false, "internal error, bad integral length %s", str.c_str() );
    89                 } // if         
     89                } // if
    9090                posn += 1;
    9191        } // if
     
    207207
    208208        assert( 0 <= size && size < 6 );
    209         // Constant type is correct for overload resolving.
    210209        ret = new ConstantExpr( Constant( new BasicType( noQualifiers, kind[Unsigned][size] ), str, v ) );
    211         if ( Unsigned && size < 2 ) {                                           // hh or h, less than int ?
     210        if ( size < 2 ) {                                                                       // hh or h, less than int ?
    212211                // int i = -1uh => 65535 not -1, so cast is necessary for unsigned, which unfortunately eliminates warnings for large values.
    213212                ret = new CastExpr( ret, new BasicType( Type::Qualifiers(), kind[Unsigned][size] ) );
     
    397396
    398397NameExpr * build_varref( const string * name ) {
    399         NameExpr * expr = new NameExpr( *name, nullptr );
     398        NameExpr * expr = new NameExpr( *name );
    400399        delete name;
    401400        return expr;
     
    488487        list< Expression * > args;
    489488        buildMoveList( expr_node, args );
    490         return new UntypedExpr( maybeMoveBuild< Expression >(function), args, nullptr );
     489        return new UntypedExpr( maybeMoveBuild< Expression >(function), args );
    491490} // build_func
    492491
Note: See TracChangeset for help on using the changeset viewer.