[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#171561: g++-3.2: iostream does not work



On Tuesday, December 3, 2002, at 05:16 AM, Francesco Potorti` wrote:

Sorry if this is not a bug, but I cannot find any way why it isn't.

This is due to a rather old change in the C++ standard. I think it was between the second and third edition of the Stroustrup book, but I could be mistaken.

The C++ standard library lives in the "std" namespace. So you must either write:

	std::cerr << "Whatever";

or "using namespace std::cerr" or "using namespace std"

You just saw this because gcc-2.95 did not have proper namespace support.




Reply to: