in KDevelop, when I debug a vector, I can see its contents. This is the result.
vector<int> v = {1,2,3};

but debugging the vector <vector <int → does not show its contents. This is the result.
vector< vector < int > > v = {{1,2,3}, {4,5,6}};

How can I debug nested STL containers?
source
share