Advertisement

stl and debugging

Started by March 30, 2001 01:17 PM
0 comments, last by frogant 23 years, 10 months ago
are there any debuggers out there that let you e.g. look at the contents of a map as if it were a simple array?
"the many sings to us"
No, because it''s not a simple array. Vector and list are the only STL containers that are "easy" to look at through the debugger (if you know what you''re doing). Otherwise, I find it''s best to dereference iterators so that I can see them with my debugger.

This topic is closed to new replies.

Advertisement