Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debugging nested STL Containers in KDevelop

in KDevelop, when I debug a vector, I can see its content. This is the result of

vector<int> v = {1,2,3};

enter image description here

but debugging a vector< vector < int > > doesn't show its content. This is the result of

vector< vector < int > > v = {{1,2,3}, {4,5,6}};

enter image description here

How can I debug nested STL containers?

like image 454
Islam Hassan Avatar asked Oct 31 '22 20:10

Islam Hassan


1 Answers

This is a known bug in KDevelop which was fixed in version 4.7.0.

like image 103
Anton Savin Avatar answered Nov 09 '22 06:11

Anton Savin