1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Parser.translationUnit() should rethrow out of memory exception after shielding it from the error handling routine.

This commit is contained in:
John Camelon 2004-08-16 19:59:00 +00:00
parent 4c6cfc77cf
commit 9d31baf489

View file

@ -220,6 +220,7 @@ public abstract class Parser extends ExpressionParser implements IParser
catch( OutOfMemoryError oome )
{
logThrowable( "translationUnit", oome ); //$NON-NLS-1$
throw oome;
}
catch( Exception e )
{