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/IASTImageLocation.java')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTImageLocation.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTImageLocation.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTImageLocation.java
index cd820b1db0e..116ca7b409f 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTImageLocation.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTImageLocation.java
@@ -10,13 +10,13 @@
*
* Contributors:
* Markus Schorn - initial API and implementation
- *******************************************************************************/
+ *******************************************************************************/
package org.eclipse.cdt.core.dom.ast;
/**
- * An image location explains how a name made it into the translation unit.
+ * An image location explains how a name made it into the translation unit.
* @since 5.0
- *
+ *
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
@@ -24,15 +24,15 @@ public interface IASTImageLocation extends IASTFileLocation {
/**
* The image is part of the code that has not been modified by the preprocessor.
*/
- final int REGULAR_CODE= 1;
- /**
+ final int REGULAR_CODE = 1;
+ /**
* The image is part of a macro definition and was introduced by some macro expansion.
*/
- final int MACRO_DEFINITION= 2;
+ final int MACRO_DEFINITION = 2;
/**
* The image is part of an argument of an explicit macro expansion.
*/
- final int ARGUMENT_TO_MACRO_EXPANSION= 3;
+ final int ARGUMENT_TO_MACRO_EXPANSION = 3;
/**
* Returns the kind of image-location, one of {@link #REGULAR_CODE}, {@link #MACRO_DEFINITION}

Back to the top