Visual Studio's debugger doesn't display more than 99 elements of a C++ container -


i trying inspect elements of std::set container in c++ app, visual studio 2005/2010 displays first 99 elements. how configure ide show elements?

thanks..

fwiw, ability out-of-the-box vs2008 seems have gone away in vs2010. tried in both vs2008 , vs2010:

std::set< int > s;  for(int = 0; < 400; ++i) {     s.insert(i); } 

setting breakpoint afterwards , using locals or watch panels, if expand s debugger shows me 400 elements below in vs2008 first 100 in vs2010.

i don't remember configuring in vs2008 make happen.

fwiw, c-style arrays , general pointers, can tell debugger how many elements show. p,200 show 200 elements *p onwards. doesn't seem work std::set objects, though. :(


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -