mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-07 00:05:53 +02:00
Added toString method.
This commit is contained in:
parent
e1516b4a11
commit
47a6e15934
1 changed files with 8 additions and 0 deletions
|
@ -118,4 +118,12 @@ public class CPPNamespaceAlias extends PlatformObject implements ICPPNamespaceAl
|
||||||
public boolean isInline() {
|
public boolean isInline() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* For debugging use only.
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return getName();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue