1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 17:26:01 +02:00

[#390] Fix API errors for Deduction Guides #390 (#391)

Update `@since` tag value from 8.1 to 8.2

Fixes https://github.com/eclipse-cdt/cdt/issues/390

Signed-off-by: Alexander Fedorov <alexander.fedorov@arsysop.ru>
This commit is contained in:
Alexander Fedorov 2023-05-10 19:18:15 +03:00 committed by GitHub
parent 08693047c5
commit e00e7b0d0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 9 deletions

View file

@ -173,7 +173,7 @@ public interface IScope {
fArgumentDependent = argumentDependent; fArgumentDependent = argumentDependent;
} }
/** @since 8.1 */ /** @since 8.2 */
public final void setDeductionGuidesOnly(boolean deductionGuidesOnly) { public final void setDeductionGuidesOnly(boolean deductionGuidesOnly) {
fDeductionGuidesOnly = deductionGuidesOnly; fDeductionGuidesOnly = deductionGuidesOnly;
} }
@ -207,7 +207,7 @@ public interface IScope {
return fArgumentDependent; return fArgumentDependent;
} }
/** @since 8.1 */ /** @since 8.2 */
public final boolean isDeductionGuidesOnly() { public final boolean isDeductionGuidesOnly() {
return fDeductionGuidesOnly; return fDeductionGuidesOnly;
} }

View file

@ -16,7 +16,7 @@ package org.eclipse.cdt.core.dom.ast.cpp;
/** /**
* Deduction guide, introduced in C++17. * Deduction guide, introduced in C++17.
* *
* @since 8.1 * @since 8.2
* @noextend This interface is not intended to be extended by clients. * @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*/ */

View file

@ -16,7 +16,7 @@ package org.eclipse.cdt.core.dom.ast.cpp;
/** /**
* Marker for deduction guide synthesized from class constructor * Marker for deduction guide synthesized from class constructor
* *
* @since 8.1 * @since 8.2
* @noextend This interface is not intended to be extended by clients. * @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*/ */

View file

@ -16,7 +16,7 @@ package org.eclipse.cdt.core.dom.ast.cpp;
/** /**
* Marker for deduction guide synthesized from class constructor template * Marker for deduction guide synthesized from class constructor template
* *
* @since 8.1 * @since 8.2
* @noextend This interface is not intended to be extended by clients. * @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*/ */

View file

@ -16,7 +16,7 @@ package org.eclipse.cdt.core.dom.ast.cpp;
/** /**
* Marker for copy deduction candidate used with Class Template Argument Deduction, introduced in C++17. * Marker for copy deduction candidate used with Class Template Argument Deduction, introduced in C++17.
* *
* @since 8.1 * @since 8.2
* @noextend This interface is not intended to be extended by clients. * @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*/ */

View file

@ -16,7 +16,7 @@ package org.eclipse.cdt.core.dom.ast.cpp;
/** /**
* Deduction guide, introduced in C++17. * Deduction guide, introduced in C++17.
* *
* @since 8.1 * @since 8.2
* @noextend This interface is not intended to be extended by clients. * @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*/ */

View file

@ -254,7 +254,7 @@ public interface ICPPNodeFactory extends INodeFactory {
IASTExpression rhs); IASTExpression rhs);
/** /**
* @since 8.1 * @since 8.2
*/ */
public ICPPASTDeductionGuide newDeductionGuide(); public ICPPASTDeductionGuide newDeductionGuide();

View file

@ -16,7 +16,7 @@ package org.eclipse.cdt.core.dom.ast.cpp;
/** /**
* Marker for user-defined deduction guide for Class Template Argument Deduction, introduced in C++17. * Marker for user-defined deduction guide for Class Template Argument Deduction, introduced in C++17.
* *
* @since 8.1 * @since 8.2
* @noextend This interface is not intended to be extended by clients. * @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*/ */