Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTClassVirtSpecifier.java')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTClassVirtSpecifier.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTClassVirtSpecifier.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTClassVirtSpecifier.java
index f910f412aca..2725682e2fa 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTClassVirtSpecifier.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTClassVirtSpecifier.java
@@ -7,7 +7,7 @@
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
- *
+ *
* Contributors:
* Nathan Ridge - Initial API and implementation
*******************************************************************************/
@@ -18,7 +18,7 @@ import org.eclipse.cdt.core.dom.ast.IASTNode;
/**
* A class-virt-specifier after a class name.
* There is currently one specifier, 'final'.
- *
+ *
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
* @since 5.7
@@ -31,13 +31,13 @@ public interface ICPPASTClassVirtSpecifier extends IASTNode {
*/
Final
}
-
+
/**
* Return the kind of this class-virt-specifier.
* Currently the only kind is 'final'.
*/
SpecifierKind getKind();
-
+
@Override
public ICPPASTClassVirtSpecifier copy();

Back to the top