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:
parent
1d79549307
commit
812c1785ab
3 changed files with 14 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -50,5 +50,5 @@ public interface ICDIVariableObject extends ICDIObject {
|
|||
/**
|
||||
* @return
|
||||
*/
|
||||
//int sizeof() throws CDIException;
|
||||
int sizeof() throws CDIException;
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue