mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-01 05:15:43 +02:00
Cosmetics.
This commit is contained in:
parent
e75f6ccf26
commit
f140f1a804
2 changed files with 2 additions and 2 deletions
|
@ -344,7 +344,7 @@ public class CPPClassType extends PlatformObject implements ICPPInternalClassTyp
|
||||||
|
|
||||||
public boolean isGloballyQualified() throws DOMException {
|
public boolean isGloballyQualified() throws DOMException {
|
||||||
IScope scope = getScope();
|
IScope scope = getScope();
|
||||||
while(scope != null) {
|
while (scope != null) {
|
||||||
if (scope instanceof ICPPBlockScope)
|
if (scope instanceof ICPPBlockScope)
|
||||||
return false;
|
return false;
|
||||||
scope = scope.getParent();
|
scope = scope.getParent();
|
||||||
|
|
|
@ -232,7 +232,7 @@ public class CPPScopeMapper {
|
||||||
}
|
}
|
||||||
scope= scope.getParent();
|
scope= scope.getParent();
|
||||||
while (scope != null && scope != tuscope) {
|
while (scope != null && scope != tuscope) {
|
||||||
buf.append(':');
|
buf.append(':');
|
||||||
scopeName= scope.getScopeName();
|
scopeName= scope.getScopeName();
|
||||||
if (scopeName != null) {
|
if (scopeName != null) {
|
||||||
buf.append(scope.getScopeName().getSimpleID());
|
buf.append(scope.getScopeName().getSimpleID());
|
||||||
|
|
Loading…
Add table
Reference in a new issue