1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 22:22:11 +02:00

Corrected few @since tags.

This commit is contained in:
Sergey Prigogin 2016-02-17 11:18:14 -08:00
parent 728fd554e4
commit fe9c09835d
7 changed files with 7 additions and 7 deletions

View file

@ -348,7 +348,7 @@ public abstract class ASTVisitor {
}
/**
* @since 5.12
* @since 6.0
*/
public int visit(ICPPASTDesignator designator) {
return PROCESS_CONTINUE;

View file

@ -18,7 +18,7 @@ package org.eclipse.cdt.core.dom.ast;
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface ILabel extends IBinding {
/** @since 5.12 */
/** @since 6.0 */
public static final ILabel[] EMPTY_ARRAY = {};
/**
* @since 5.4

View file

@ -130,7 +130,7 @@ public interface INodeFactory {
public org.eclipse.cdt.core.dom.ast.gnu.IGCCASTAttributeSpecifier newGCCAttributeSpecifier();
/**
* @since 5.12
* @since 6.0
*/
public IGCCASTAttributeList newGCCAttributeList();

View file

@ -15,7 +15,7 @@ import org.eclipse.cdt.core.dom.ast.IASTName;
/**
* Specific designator that represents a field reference.
* @since 5.12
* @since 6.0
*
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.

View file

@ -14,7 +14,7 @@ package org.eclipse.cdt.core.dom.ast.cpp;
/**
* A variable template.
*
* @since 5.12
* @since 6.0
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/

View file

@ -18,7 +18,7 @@ import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTExpression;
* GCC-specific designator that allows for shorthand array range to be specified
* in a designated initializer, e.g. in int a[6] = { [2 ... 4] = 29 }; or
* struct ABC { int def[10]; } abc = { .def[4 ... 6] = 3 };
* @since 5.12
* @since 6.0
*
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.

View file

@ -157,7 +157,7 @@ public interface ICPPParserExtensionConfiguration {
*
* @see "http://gcc.gnu.org/onlinedocs/gcc/Designated-Inits.html"
* @return {@code true} if support for the extension should be enabled
* @since 5.12
* @since 6.0
*/
public boolean supportGCCStyleDesignators();