mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-01 21:35:40 +02:00
Added toString() method.
This commit is contained in:
parent
c5b403a1ee
commit
34f4f725df
1 changed files with 5 additions and 0 deletions
|
@ -70,4 +70,9 @@ public class PointerTypeClone implements IPointerType, ITypeContainer, IIndexTyp
|
||||||
public Object clone() {
|
public Object clone() {
|
||||||
return new PointerTypeClone(this);
|
return new PointerTypeClone(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return delegate.toString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue