1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-29 11:55:40 +02:00

Undo accidental check-in.

This commit is contained in:
Markus Schorn 2010-07-08 13:34:14 +00:00
parent 884e65041d
commit 7937a7b89e

View file

@ -172,7 +172,6 @@ public class CPreprocessor implements ILexerLog, IScanner, IAdaptable {
private int fContentAssistLimit= -1;
private boolean fHandledCompletion= false;
private boolean fSplitShiftRightOperator= false;
private int fTokenCount= 0;
// state information
private final CharArrayMap<PreprocessorMacro> fMacroDictionary = new CharArrayMap<PreprocessorMacro>(512);
@ -463,9 +462,6 @@ public class CPreprocessor implements ILexerLog, IScanner, IAdaptable {
if (t != null) {
fPrefetchedTokens= (Token) t.getNext();
t.setNext(null);
if (++fTokenCount > 1000) {
throw new OffsetLimitReachedException(0, t);
}
return t;
}