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:
parent
4eb880ce48
commit
1076a82a57
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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() {
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue