$NetBSD: patch-ac,v 1.3 2004/02/11 04:06:05 minskim Exp $ --- framework/StdOutFormatTarget.cpp.orig 2003-05-27 10:04:45.000000000 -0500 +++ framework/StdOutFormatTarget.cpp @@ -80,7 +80,7 @@ */ #include -#include +#include XERCES_CPP_NAMESPACE_BEGIN @@ -92,7 +92,7 @@ StdOutFormatTarget::~StdOutFormatTarget( void StdOutFormatTarget::flush() { - cout.flush(); + std::cout.flush(); } void StdOutFormatTarget::writeChars(const XMLByte* const toWrite @@ -104,8 +104,8 @@ void StdOutFormatTarget::writeChars(cons // Without the cast, it was printing the pointer value in hex. // Quite annoying, considering every other platform printed // the string with the explicit cast to char* below. - cout.write((char *) toWrite, (int) count); - cout.flush(); + std::cout.write((char *) toWrite, (int) count); + std::cout.flush(); }