1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 08:46:02 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2016-05-20 18:28:09 -07:00
parent 9ef289d34c
commit 81d434b551
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ import org.eclipse.cdt.core.parser.util.ObjectMap;
import org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.CPPTemplates; import org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.CPPTemplates;
/** /**
* Represents a specialization of a class-template * Represents a specialization of a class-template.
*/ */
public class CPPClassTemplateSpecialization extends CPPClassSpecialization public class CPPClassTemplateSpecialization extends CPPClassSpecialization
implements ICPPClassTemplate, ICPPInternalClassTemplate { implements ICPPClassTemplate, ICPPInternalClassTemplate {

View file

@ -121,7 +121,7 @@ public class CPPMethod extends CPPFunction implements ICPPMethod {
@Override @Override
public ICPPClassType getClassOwner() { public ICPPClassType getClassOwner() {
ICPPClassScope scope = (ICPPClassScope)getScope(); ICPPClassScope scope = (ICPPClassScope) getScope();
return scope.getClassType(); return scope.getClassType();
} }