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

Made template argument classes final.

Change-Id: I06d532e6b4be8f3684e7d3e1470d10df1985db57
This commit is contained in:
Sergey Prigogin 2016-11-14 20:28:53 -08:00
parent 08eb54b46d
commit 3797ebcc83
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ import org.eclipse.core.runtime.Assert;
/**
* Implementation of non-type template argument, used by AST and index.
*/
public class CPPTemplateNonTypeArgument implements ICPPTemplateArgument {
public final class CPPTemplateNonTypeArgument implements ICPPTemplateArgument {
private final ICPPEvaluation fEvaluation;
public CPPTemplateNonTypeArgument(ICPPEvaluation evaluation, IASTNode point) {

View file

@ -21,7 +21,7 @@ import org.eclipse.core.runtime.Assert;
/**
* Implementation of type template arguments, used by AST and index.
*/
public class CPPTemplateTypeArgument implements ICPPTemplateArgument {
public final class CPPTemplateTypeArgument implements ICPPTemplateArgument {
private final IType fType;
private final IType fOriginalType;