Hello,

forgotten the next show stopper...
> 
> The error message tells it all. #include <X> instead of #include
> <X.h>, for X in { list, vector, map, algorithm, utility, iostream, ...
> }

And put std:: in front of list, vector and everything from the standard
headers.

std::list<int> a;

or

#include ...

using namespace std;  // Once for the rest of the current scope
...
list<int> a;

> 
> Bernd Strieder

_______________________________________________
help-gplusplus mailing list
help-gplusplus@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to