* varobj.c (struct varobj): Fix comment
for the type member not to lie when it can be NULL.
This commit is contained in:
parent
02142340a0
commit
202ddcaa09
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2007-08-31 Vladimir Prus <vladimir@codesourcery.com>
|
||||||
|
|
||||||
|
* varobj.c (struct varobj): Fix comment
|
||||||
|
for the type member not to lie when it can be
|
||||||
|
NULL.
|
||||||
|
|
||||||
2007-08-31 Vladimir Prus <vladimir@codesourcery.com>
|
2007-08-31 Vladimir Prus <vladimir@codesourcery.com>
|
||||||
|
|
||||||
Implement -var-info-path-expression.
|
Implement -var-info-path-expression.
|
||||||
|
|
|
@ -110,7 +110,9 @@ struct varobj
|
||||||
/* Index of this variable in its parent or -1 */
|
/* Index of this variable in its parent or -1 */
|
||||||
int index;
|
int index;
|
||||||
|
|
||||||
/* The type of this variable. This may NEVER be NULL. */
|
/* The type of this variable. This can be NULL
|
||||||
|
for artifial variable objects -- currently, the "accessibility"
|
||||||
|
variable objects in C++. */
|
||||||
struct type *type;
|
struct type *type;
|
||||||
|
|
||||||
/* The value of this expression or subexpression. A NULL value
|
/* The value of this expression or subexpression. A NULL value
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue