1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-30 21:55:31 +02:00

Added toString() method.

This commit is contained in:
Sergey Prigogin 2008-12-07 06:41:24 +00:00
parent c5b403a1ee
commit 34f4f725df

View file

@ -70,4 +70,9 @@ public class PointerTypeClone implements IPointerType, ITypeContainer, IIndexTyp
public Object clone() {
return new PointerTypeClone(this);
}
@Override
public String toString() {
return delegate.toString();
}
}