Reputation: 1739
I'm debugging my programs using Code::Blocks and I'm facing following issue: I do not see vector's members in Watches.
Why is this happening? How do I deal with it?
Upvotes: 3
Views: 1592
Reputation: 5022
You need to install python pretty printers on the gdb version you are using to be able to display the content of vectors correctly, see this link.
Upvotes: 1