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.