Richard Bytheway writes:
> 
> Even I know that cout should be found with relative ease by g++.

not g++ 3.x  which is MUCH pickier about being standards compliant
ie it respect namespaces

therefore 'cout' needs to be qualified either by

1) adding 
   using std::cout;
   before cout is used

2) or using std::cout instead of the unqualified cout

HTH

Norman




_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to