Skip to content

Commit

Permalink
[#390] Fix API errors for Deduction Guides #390 (#391)
Browse files Browse the repository at this point in the history
Update `@since` tag value from 8.1 to 8.2

Fixes #390

Signed-off-by: Alexander Fedorov <alexander.fedorov@arsysop.ru>
  • Loading branch information
ruspl-afed authored May 10, 2023
1 parent 0869304 commit e00e7b0
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public final void setArgumentDependent(boolean argumentDependent) {
fArgumentDependent = argumentDependent;
}

/** @since 8.1 */
/** @since 8.2 */
public final void setDeductionGuidesOnly(boolean deductionGuidesOnly) {
fDeductionGuidesOnly = deductionGuidesOnly;
}
Expand Down Expand Up @@ -207,7 +207,7 @@ public final boolean isArgumentDependent() {
return fArgumentDependent;
}

/** @since 8.1 */
/** @since 8.2 */
public final boolean isDeductionGuidesOnly() {
return fDeductionGuidesOnly;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Deduction guide, introduced in C++17.
*
* @since 8.1
* @since 8.2
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* 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.
* @noimplement This interface is not intended to be implemented by clients.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* 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.
* @noimplement This interface is not intended to be implemented by clients.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* 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.
* @noimplement This interface is not intended to be implemented by clients.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Deduction guide, introduced in C++17.
*
* @since 8.1
* @since 8.2
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public ICPPASTFoldExpression newFoldExpression(int opToken, boolean isComma, IAS
IASTExpression rhs);

/**
* @since 8.1
* @since 8.2
*/
public ICPPASTDeductionGuide newDeductionGuide();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* 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.
* @noimplement This interface is not intended to be implemented by clients.
*/
Expand Down

0 comments on commit e00e7b0

Please sign in to comment.