1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2009-05-24 04:58:20 +00:00
parent 8ba4659e47
commit 7d44857c55
2 changed files with 4 additions and 5 deletions

View file

@ -43,22 +43,22 @@ public interface ILocationResolver {
/**
* @see IASTTranslationUnit#getAllPreprocessorStatements()
*/
IASTPreprocessorStatement [] getAllPreprocessorStatements();
IASTPreprocessorStatement[] getAllPreprocessorStatements();
/**
* @see IASTTranslationUnit#getMacroDefinitions()
*/
IASTPreprocessorMacroDefinition [] getMacroDefinitions();
IASTPreprocessorMacroDefinition[] getMacroDefinitions();
/**
* @see IASTTranslationUnit#getBuiltinMacroDefinitions()
*/
IASTPreprocessorMacroDefinition [] getBuiltinMacroDefinitions();
IASTPreprocessorMacroDefinition[] getBuiltinMacroDefinitions();
/**
* @see IASTTranslationUnit#getIncludeDirectives()
*/
IASTPreprocessorIncludeStatement [] getIncludeDirectives();
IASTPreprocessorIncludeStatement[] getIncludeDirectives();
/**
* @see IASTTranslationUnit#getPreprocessorProblems()

View file

@ -160,7 +160,6 @@ public class LocationMap implements ILocationResolver {
return new ASTMacroReferenceName(null, IASTPreprocessorStatement.MACRO_NAME, startNumber, endNumber, macro, null);
}
/**
* Creates a new context for the result of a (recursive) macro-expansion.
* @param nameOffset offset within the current context where the name for the macro-expansion starts.