Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/FixInit.cpp

    r16ba4897 r661e7b0  
    301301                } // try
    302302        } // for
    303         errors.throwIfNonEmpty();
     303        if ( ! errors.isEmpty() ) {
     304                throw errors;
     305        } // if
    304306}
    305307
     
    11711173                function->stmts = mutStmts;
    11721174        }
    1173         errors.throwIfNonEmpty();
     1175        if (! errors.isEmpty()) {
     1176                throw errors;
     1177        }
    11741178        return function;
    11751179}
Note: See TracChangeset for help on using the changeset viewer.