1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-12 18:55:38 +02:00

Bug 540450 - Fix @since version

Change-Id: I5c31d97dbbd277a87147cb05d0245ce0953189bb
Signed-off-by: Hannes Vogt <hannes@havogt.de>
This commit is contained in:
Hannes Vogt 2018-11-01 21:43:16 +01:00 committed by Nathan Ridge
parent a8a9138258
commit 481db37a59
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTName;
* *
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients. * @noextend This interface is not intended to be extended by clients.
* @since 9.6 * @since 6.6
*/ */
public interface ICPPASTTemplateName extends ICPPASTName { public interface ICPPASTTemplateName extends ICPPASTName {
} }

View file

@ -305,7 +305,7 @@ public interface ICPPNodeFactory extends INodeFactory {
public ICPPASTName newName(String name); public ICPPASTName newName(String name);
/** /**
* @since 9.6 * @since 6.6
*/ */
public ICPPASTTemplateName newTemplateName(char[] templateName); public ICPPASTTemplateName newTemplateName(char[] templateName);