Author Topic: [Debugger] Can't expand pointers in watch window ?  (Read 2994 times)

Offline Yuki

  • Single posting newcomer
  • *
  • Posts: 8
[Debugger] Can't expand pointers in watch window ?
« on: June 04, 2010, 04:58:59 am »
Hi , C::B's debugger is quite good , but it has a problem that a pointer in a struct can't be expand.

example :
struct Node
{
    Node * next;
    int a;
};

when I watch a struct instance variable . the item "next" just show the pointer's value (address), I can't expand it to watch the node it points. As I know , VC's debugger can expand the pointer inside a struct. It will be very nice if C::B's debugger supports this feature.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: [Debugger] Can't expand pointers in watch window ?
« Reply #1 on: June 04, 2010, 07:07:39 pm »
This is a problem(feature) of gdb...
It does the expansion only in gdb/mi mode, there is a debugger plugin in progress that uses gdb/mi mode.
But it is in early development state.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]