1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

Made fStructMapper final.

This commit is contained in:
Sergey Prigogin 2011-04-13 21:37:46 +00:00
parent 4eb880ce48
commit 1076a82a57
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ import org.eclipse.cdt.internal.core.dom.parser.IASTAmbiguityParent;
*/
public class CASTTranslationUnit extends ASTTranslationUnit implements IASTAmbiguityParent {
private CScope compilationUnit = null;
private CStructMapper fStructMapper;
private final CStructMapper fStructMapper;
public CASTTranslationUnit() {
fStructMapper= new CStructMapper(this);

View file

@ -40,7 +40,7 @@ import org.eclipse.cdt.internal.core.parser.scanner.InternalFileContent;
public class CPPASTTranslationUnit extends ASTTranslationUnit implements ICPPASTTranslationUnit, IASTAmbiguityParent {
private CPPNamespaceScope fScope = null;
private ICPPNamespace fBinding = null;
private CPPScopeMapper fScopeMapper= new CPPScopeMapper(this);
private final CPPScopeMapper fScopeMapper= new CPPScopeMapper(this);
public CPPASTTranslationUnit() {
}