Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/c/GNUCSourceParser.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/c/GNUCSourceParser.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/c/GNUCSourceParser.java
index f552a83baee..47870d6824b 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/c/GNUCSourceParser.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/c/GNUCSourceParser.java
@@ -464,7 +464,7 @@ public class GNUCSourceParser extends AbstractGNUSourceCodeParser {
int conditionCount= 0;
BinaryOperator lastOperator= null;
IASTExpression lastExpression= castExpression(CastExprCtx.eBExpr);
- loop: while(true) {
+ loop: while (true) {
lt1= LT(1);
switch(lt1) {
case IToken.tQUESTION:
@@ -668,7 +668,7 @@ public class GNUCSourceParser extends AbstractGNUSourceCodeParser {
List<IASTExpression> argList= null;
consume(IToken.tLPAREN);
boolean isFirst= true;
- while(true) {
+ while (true) {
final int lt1= LT(1);
if (lt1 == IToken.tRPAREN) {
endOffset= consume().getEndOffset();
@@ -1405,7 +1405,7 @@ public class GNUCSourceParser extends AbstractGNUSourceCodeParser {
final DeclarationOptions option) throws EndOfFileException, BacktrackException {
IASTDeclarator result= null;
int lt1;
- loop: while(true) {
+ loop: while (true) {
lt1= LTcatchEOF(1);
switch (lt1) {
case IToken.tLPAREN:
@@ -1555,7 +1555,7 @@ public class GNUCSourceParser extends AbstractGNUSourceCodeParser {
List<IASTParameterDeclaration> parameters= null;
int endOffset= last.getEndOffset();
- paramLoop: while(true) {
+ paramLoop: while (true) {
switch (LT(1)) {
case IToken.tRPAREN:
case IToken.tEOC:

Back to the top