Are you saying that this doesn't work?
Copy and paste the code above in a new C++ source file. Does it compile?Code:#include <list>
void foo()
{
std::list<int> IntList;
IntList.push_back( 10 );
}
If this doesn't work, you need to reinstall VC++ or something is wrong in your compiler settings.
Regards,
Paul McKenzie
