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

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-04-17 06:08:16 +00:00
parent ead2883d1c
commit 3cf16d06a7

View file

@ -23,17 +23,15 @@ import org.eclipse.cdt.internal.core.dom.parser.ASTNode;
import org.eclipse.cdt.internal.core.dom.parser.IASTAmbiguityParent;
/**
* If statement in c++
* If statement in C++
*/
public class CPPASTIfStatement extends ASTNode implements ICPPASTIfStatement, IASTAmbiguityParent {
private IASTExpression condition;
private IASTStatement thenClause;
private IASTStatement elseClause;
private IASTDeclaration condDecl;
private IScope scope;
public CPPASTIfStatement() {
}