While working on some minor varobj cleanups, I noticed this obvious
one: the varobj_item typedef isn't redundant in C++, and so can be
removed.
gdb/ChangeLog
2020-10-20 Tom Tromey <tom@tromey.com>
* varobj-iter.h (struct varobj_item): Remove typedef.
+2020-10-20 Tom Tromey <tom@tromey.com>
+
+ * varobj-iter.h (struct varobj_item): Remove typedef.
+
2020-10-20 Simon Marchi <simon.marchi@polymtl.ca>
* infrun.c (currently_stepping): Change int to bool
/* A node or item of varobj, composed of the name and the value. */
-typedef struct varobj_item
+struct varobj_item
{
/* Name of this item. */
std::string name;
/* Value of this item. */
struct value *value;
-} varobj_item;
+};
struct varobj_iter_ops;