Changes in src/InitTweak/FixInit.cpp [16ba4897:661e7b0]
- File:
-
- 1 edited
-
src/InitTweak/FixInit.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixInit.cpp
r16ba4897 r661e7b0 301 301 } // try 302 302 } // for 303 errors.throwIfNonEmpty(); 303 if ( ! errors.isEmpty() ) { 304 throw errors; 305 } // if 304 306 } 305 307 … … 1171 1173 function->stmts = mutStmts; 1172 1174 } 1173 errors.throwIfNonEmpty(); 1175 if (! errors.isEmpty()) { 1176 throw errors; 1177 } 1174 1178 return function; 1175 1179 }
Note:
See TracChangeset
for help on using the changeset viewer.