[code=cpp]
#include <list>
int main()
{
std::list<int> lst;
for(int i=0; i<1000; i++)
{
for(int x=0; x<5000; x++)
lst.push_back(x );
lst.clear();
}
return 0;
}[/code]
I compiled this code on VC8 (Release version ) and Cygwin G++ 3.4.4 and...