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/EScopeKind.java')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/EScopeKind.java12
1 files changed, 5 insertions, 7 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/EScopeKind.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/EScopeKind.java
index 702ea92ebb7..96682204741 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/EScopeKind.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/EScopeKind.java
@@ -10,7 +10,7 @@
*
* Contributors:
* Markus Schorn - initial API and implementation
- *******************************************************************************/
+ *******************************************************************************/
package org.eclipse.cdt.core.dom.ast;
/**
@@ -19,20 +19,18 @@ package org.eclipse.cdt.core.dom.ast;
*/
public enum EScopeKind {
/**
- * Used for local scope, but also for function-scope (labels) and
+ * Used for local scope, but also for function-scope (labels) and
* function-prototype scope (parameters in function prototypes).
*/
- eLocal,
+ eLocal,
/**
* @since 5.2
*/
- eEnumeration,
- eNamespace,
+ eEnumeration, eNamespace,
/**
* For classes, structs or unions.
*/
- eClassType,
- eGlobal,
+ eClassType, eGlobal,
/**
* For each template declaration a scope is created in which the template
* parameters can be looked up.

Back to the top