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

Bug 292236 Fix since tags

Change-Id: I8c61ef66dd2c5b22cd74934240fabdcad66ca91a
Signed-off-by: Thomas Corbat <tcorbat@hsr.ch>
This commit is contained in:
Thomas Corbat 2017-01-05 15:20:30 +01:00 committed by Marc Khouzam
parent b218771722
commit 0514094d09
3 changed files with 5 additions and 3 deletions

View file

@ -106,7 +106,7 @@ public interface ICPPClassSpecialization extends ICPPTypeSpecialization, ICPPCla
/**
* Similar to {@link ICPPClassType#getUsingDeclarations()} but accepts a starting point
* for template instantiation.
* @since 6.2
* @since 6.3
*/
ICPPUsingDeclaration[] getUsingDeclarations(IASTNode point);
}

View file

@ -110,6 +110,8 @@ public interface ICPPClassType extends ICompositeType, ICPPBinding {
/**
* Returns an array of using declarations in this class.
*
* @since 6.3
*/
public ICPPUsingDeclaration[] getUsingDeclarations();

View file

@ -23,7 +23,7 @@ import org.eclipse.cdt.core.dom.ast.IBinding;
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface ICPPUsingDeclaration extends ICPPBinding {
/** @since 6.2 */
/** @since 6.3 */
public static final ICPPUsingDeclaration[] EMPTY_USING_DECL_ARRAY = {};
/**
* Return an array of bindings that were declared by this using declaration.