Author: afester Date: Thu Mar 16 09:18:26 2006 New Revision: 386387 URL: http://svn.apache.org/viewcvs?rev=386387&view=rev Log: LOGCXX-126: replaced iostream include with stdio.h
Modified: logging/log4cxx/trunk/src/systemerrwriter.cpp logging/log4cxx/trunk/src/systemoutwriter.cpp Modified: logging/log4cxx/trunk/src/systemerrwriter.cpp URL: http://svn.apache.org/viewcvs/logging/log4cxx/trunk/src/systemerrwriter.cpp?rev=386387&r1=386386&r2=386387&view=diff ============================================================================== --- logging/log4cxx/trunk/src/systemerrwriter.cpp (original) +++ logging/log4cxx/trunk/src/systemerrwriter.cpp Thu Mar 16 09:18:26 2006 @@ -16,7 +16,7 @@ #include <log4cxx/helpers/systemerrwriter.h> #include <log4cxx/helpers/transcoder.h> -#include <iostream> +#include <stdio.h> using namespace log4cxx; using namespace log4cxx::helpers; Modified: logging/log4cxx/trunk/src/systemoutwriter.cpp URL: http://svn.apache.org/viewcvs/logging/log4cxx/trunk/src/systemoutwriter.cpp?rev=386387&r1=386386&r2=386387&view=diff ============================================================================== --- logging/log4cxx/trunk/src/systemoutwriter.cpp (original) +++ logging/log4cxx/trunk/src/systemoutwriter.cpp Thu Mar 16 09:18:26 2006 @@ -16,7 +16,7 @@ #include <log4cxx/helpers/systemoutwriter.h> #include <log4cxx/helpers/transcoder.h> -#include <iostream> +#include <stdio.h> using namespace log4cxx; using namespace log4cxx::helpers;