kirillbobyrev
kirillbobyrev

Reputation: 1729

Code::Blocks debugging issue

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?enter image description here

Upvotes: 3

Views: 1588

Answers (1)

Étienne
Étienne

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

Related Questions