1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 03:53:21 +02:00

Fix for bug #127050: Eclipse freeses in invalide header file is included.

This commit is contained in:
Oleg Krasilnikov 2006-03-14 14:47:26 +00:00
parent 17afe7c4ac
commit e6f7886cc6

View file

@ -448,6 +448,8 @@ public abstract class AbstractGNUSourceCodeParser implements ISourceCodeParser {
case IToken.tLBRACE: case IToken.tLBRACE:
++depth; ++depth;
break; break;
case IToken.tEOC:
throw new EndOfFileException();
} }
} }
return result; return result;