1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-19 15:05:36 +02:00

Made sizeof() public. Discussed with Mikhail.

This commit is contained in:
John Cortell 2007-04-19 11:44:46 +00:00
parent 9977180c74
commit cb5454c394

View file

@ -529,7 +529,7 @@ public abstract class CVariable extends AbstractCVariable implements ICDIEventLi
setDisposed( true );
}
protected int sizeof() {
public int sizeof() {
IInternalVariable iv = getCurrentInternalVariable();
return ( iv != null ) ? iv.sizeof() : -1;
}