Reputation: 1729
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: 1588
Reputation: 4984
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