mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Cosmetics.
This commit is contained in:
parent
128debaae2
commit
4d10542b57
7 changed files with 29 additions and 30 deletions
|
@ -122,7 +122,7 @@ public class CPPClassSpecialization extends CPPSpecialization
|
|||
|
||||
@Override
|
||||
public ICPPBase[] getBases() {
|
||||
return getBases(null);
|
||||
return getBases(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -164,7 +164,7 @@ public class CPPClassSpecialization extends CPPSpecialization
|
|||
|
||||
@Override
|
||||
public ICPPConstructor[] getConstructors() {
|
||||
return getConstructors(null);
|
||||
return getConstructors(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -30,8 +30,7 @@ import org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.CPPTemplates;
|
|||
*/
|
||||
public class CPPClassTemplatePartialSpecializationSpecialization extends CPPClassSpecialization
|
||||
implements ICPPClassTemplatePartialSpecializationSpecialization, ICPPInternalClassTemplate {
|
||||
|
||||
private ObjectMap instances = null;
|
||||
private ObjectMap instances;
|
||||
private ICPPDeferredClassInstance fDeferredInstance;
|
||||
private final ICPPClassTemplate fClassTemplate;
|
||||
private final ICPPTemplateArgument[] fArguments;
|
||||
|
@ -142,7 +141,7 @@ public class CPPClassTemplatePartialSpecializationSpecialization extends CPPClas
|
|||
|
||||
@Override
|
||||
public ICPPTemplateArgument getDefaultArgFromIndex(int paramPos) throws DOMException {
|
||||
// no default arguments for partial specializations
|
||||
// No default arguments for partial specializations
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -129,7 +129,7 @@ public class CompositeCPPClassSpecialization extends CompositeCPPClassType imple
|
|||
|
||||
@Override
|
||||
public final ICPPBase[] getBases() {
|
||||
return getBases(null);
|
||||
return getBases(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -143,7 +143,7 @@ public class CompositeCPPClassSpecialization extends CompositeCPPClassType imple
|
|||
|
||||
@Override
|
||||
public final ICPPConstructor[] getConstructors() {
|
||||
return getConstructors(null);
|
||||
return getConstructors(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -157,7 +157,7 @@ public class CompositeCPPClassSpecialization extends CompositeCPPClassType imple
|
|||
|
||||
@Override
|
||||
public final ICPPMethod[] getDeclaredMethods() {
|
||||
return getDeclaredMethods(null);
|
||||
return getDeclaredMethods(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -171,7 +171,7 @@ public class CompositeCPPClassSpecialization extends CompositeCPPClassType imple
|
|||
|
||||
@Override
|
||||
public final ICPPField[] getDeclaredFields() {
|
||||
return getDeclaredFields(null);
|
||||
return getDeclaredFields(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -185,7 +185,7 @@ public class CompositeCPPClassSpecialization extends CompositeCPPClassType imple
|
|||
|
||||
@Override
|
||||
public final IBinding[] getFriends() {
|
||||
return getFriends(null);
|
||||
return getFriends(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -199,7 +199,7 @@ public class CompositeCPPClassSpecialization extends CompositeCPPClassType imple
|
|||
|
||||
@Override
|
||||
public final ICPPClassType[] getNestedClasses() {
|
||||
return getNestedClasses(null);
|
||||
return getNestedClasses(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -208,7 +208,7 @@ class PDOMCPPClassSpecialization extends PDOMCPPSpecialization implements
|
|||
|
||||
@Override
|
||||
public ICPPBase[] getBases() {
|
||||
return getBases(null);
|
||||
return getBases(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -241,7 +241,7 @@ class PDOMCPPClassSpecialization extends PDOMCPPSpecialization implements
|
|||
|
||||
@Override
|
||||
public ICPPConstructor[] getConstructors() {
|
||||
return getConstructors(null);
|
||||
return getConstructors(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -262,7 +262,7 @@ class PDOMCPPClassSpecialization extends PDOMCPPSpecialization implements
|
|||
|
||||
@Override
|
||||
public ICPPMethod[] getDeclaredMethods() {
|
||||
return getDeclaredMethods(null);
|
||||
return getDeclaredMethods(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -283,7 +283,7 @@ class PDOMCPPClassSpecialization extends PDOMCPPSpecialization implements
|
|||
|
||||
@Override
|
||||
public ICPPField[] getDeclaredFields() {
|
||||
return getDeclaredFields(null);
|
||||
return getDeclaredFields(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -304,7 +304,7 @@ class PDOMCPPClassSpecialization extends PDOMCPPSpecialization implements
|
|||
|
||||
@Override
|
||||
public ICPPClassType[] getNestedClasses() {
|
||||
return getNestedClasses(null);
|
||||
return getNestedClasses(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -325,7 +325,7 @@ class PDOMCPPClassSpecialization extends PDOMCPPSpecialization implements
|
|||
|
||||
@Override
|
||||
public IBinding[] getFriends() {
|
||||
return getFriends(null);
|
||||
return getFriends(null); // Instantiation of dependent expression may not work.
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue