You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4cxx-dev@logging.apache.org by af...@apache.org on 2006/03/16 18:18:32 UTC

svn commit: r386387 - in /logging/log4cxx/trunk/src: systemerrwriter.cpp systemoutwriter.cpp

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;