mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Cosmetics.
This commit is contained in:
parent
65a29165c2
commit
ed4b23705c
4 changed files with 16 additions and 20 deletions
|
@ -20,5 +20,4 @@ import org.eclipse.cdt.core.dom.ast.IASTArrayDeclarator;
|
||||||
* @noimplement This interface is not intended to be implemented by clients.
|
* @noimplement This interface is not intended to be implemented by clients.
|
||||||
*/
|
*/
|
||||||
public interface ICPPASTArrayDeclarator extends IASTArrayDeclarator, ICPPASTDeclarator {
|
public interface ICPPASTArrayDeclarator extends IASTArrayDeclarator, ICPPASTDeclarator {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,15 +21,14 @@ import org.eclipse.cdt.core.dom.ast.IASTDeclarator;
|
||||||
*/
|
*/
|
||||||
public interface ICPPASTDeclarator extends IASTDeclarator {
|
public interface ICPPASTDeclarator extends IASTDeclarator {
|
||||||
/**
|
/**
|
||||||
* Returns whether the declarator contains an ellipsis, in which case it declares a
|
* Returns whether the declarator contains an ellipsis, in which case it declares
|
||||||
* parameter pack.
|
* a parameter pack.
|
||||||
*/
|
*/
|
||||||
public boolean declaresParameterPack();
|
public boolean declaresParameterPack();
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set whether the declarator contains an ellipsis, denoting a pack expansion.
|
* Set whether the declarator contains an ellipsis, denoting a pack expansion.
|
||||||
* Not allowed on frozen AST.
|
* Not allowed on a frozen AST.
|
||||||
*/
|
*/
|
||||||
public void setDeclaresParameterPack(boolean val);
|
public void setDeclaresParameterPack(boolean val);
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,9 +18,7 @@ import org.eclipse.cdt.core.dom.ast.ASTNodeProperty;
|
||||||
* @noimplement This interface is not intended to be implemented by clients.
|
* @noimplement This interface is not intended to be implemented by clients.
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public interface ICPPASTFunctionTryBlockDeclarator extends
|
public interface ICPPASTFunctionTryBlockDeclarator extends ICPPASTFunctionDeclarator {
|
||||||
ICPPASTFunctionDeclarator {
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A <code>CATCH_HANDLER</code> is the role of an ICPPASTCatchHandler in
|
* A <code>CATCH_HANDLER</code> is the role of an ICPPASTCatchHandler in
|
||||||
* this interface.
|
* this interface.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2008, 2010 Institute for Software, HSR Hochschule fuer Technik
|
* Copyright (c) 2008, 2012 Institute for Software, HSR Hochschule fuer Technik
|
||||||
* Rapperswil, University of applied sciences and others
|
* Rapperswil, University of applied sciences and others
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
|
Loading…
Add table
Reference in a new issue