1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Uncommented the 'sizeof' method of 'ICDIVariableObject'.

This commit is contained in:
Mikhail Khodjaiants 2003-08-06 20:18:33 +00:00
parent 1d79549307
commit 812c1785ab
3 changed files with 14 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2003-08-06 Mikhail Khodjaiants
Uncommented the 'sizeof' method of 'ICDIVariableObject'.
* ICDIVariableObject.java
* CVariable.java
2003-08-06 Alain Magloire
Move some of the methods in ICDIVariableObject.

View file

@ -50,5 +50,5 @@ public interface ICDIVariableObject extends ICDIObject {
/**
* @return
*/
//int sizeof() throws CDIException;
int sizeof() throws CDIException;
}

View file

@ -151,6 +151,14 @@ public abstract class CVariable extends CDebugElement
{
return fException;
}
/* (non-Javadoc)
* @see org.eclipse.cdt.debug.core.cdi.model.ICDIVariableObject#sizeof()
*/
public int sizeof() throws CDIException
{
return 0;
}
}
class InternalVariable