-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
38c8464
commit 8771d78
Showing
6 changed files
with
838 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/IActualCPPLanguage.java
This file was deleted.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
.../cdt/core/dom/ast/c/IActualCLanguage.java → .../cdt/core/dom/parser/IExactCLanguage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
package org.eclipse.cdt.core.dom.ast.c; | ||
package org.eclipse.cdt.core.dom.parser; | ||
|
||
/** | ||
* This interface is used by Eclipse to mark the core language implementation that | ||
* comes as one of the built-in languages as the true C Language. | ||
* comes as one of the built-in languages as the true C or C++ Languages. | ||
* This should not be implemented by any dialects! | ||
* | ||
* @noextend This interface is not intended to be extended by clients. | ||
* @noimplement This interface is not intended to be implemented by clients. | ||
*/ | ||
interface IActualCLanguage { | ||
public interface IExactCLanguage { | ||
|
||
} |
Oops, something went wrong.