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

fix a bug

This commit is contained in:
Alain Magloire 2003-10-14 05:21:09 +00:00
parent 45e5950f0e
commit 239149c98e

View file

@ -33,8 +33,6 @@ public class MakefileSimpleMacroRule extends PatternRule {
while ((c = scanner.read()) != ICharacterScanner.EOF) {
if ('(' == (char) c)
++nOfBrackets;
if ('(' == (char)c)
--nOfBrackets;
if (fEndSequence.length > 0 && c == fEndSequence[0]) {
// Check if the specified end sequence has been found.