Skip to content

Commit

Permalink
LOGCXX-286: gcc 4.3 requires #include <cstring>
Browse files Browse the repository at this point in the history
  • Loading branch information
Curt Arnold committed May 20, 2008
1 parent bc22144 commit 1f6bf7e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/changes/changes.xml
Expand Up @@ -39,6 +39,7 @@
<action issue="LOGCXX-283">Suspicious, but harmless, reuse of LOCAL1 in SyslogAppender</action>
<action issue="LOGCXX-284">Unit tests fail to compile with xlc_r on AIX</action>
<action issue="LOGCXX-285">LevelRangeFilter has default value for acceptOnMatch that is different from log4j</action>
<action issue="LOGCXX-286">gcc 4.3 requires #include &lt;cstring&gt; when using memcpy and related.</action>
</release>
<release version="0.10.0" date="2008-04-03" description="First Apache release">
<action issue="LOGCXX-2">logger.h includes config.h</action>
Expand Down
1 change: 1 addition & 0 deletions src/examples/cpp/console.cpp
Expand Up @@ -22,6 +22,7 @@
#include <log4cxx/logmanager.h>
#include <iostream>
#include <locale.h>
#include <cstring>

using namespace log4cxx;
using namespace log4cxx::helpers;
Expand Down
1 change: 1 addition & 0 deletions src/main/cpp/inputstreamreader.cpp
Expand Up @@ -20,6 +20,7 @@
#include <log4cxx/helpers/exception.h>
#include <log4cxx/helpers/pool.h>
#include <log4cxx/helpers/bytebuffer.h>
#include <cstring>

using namespace log4cxx;
using namespace log4cxx::helpers;
Expand Down
1 change: 1 addition & 0 deletions src/main/cpp/socketoutputstream.cpp
Expand Up @@ -19,6 +19,7 @@
#include <log4cxx/helpers/socketoutputstream.h>
#include <log4cxx/helpers/socket.h>
#include <log4cxx/helpers/bytebuffer.h>
#include <cstring>

using namespace log4cxx;
using namespace log4cxx::helpers;
Expand Down

0 comments on commit 1f6bf7e

Please sign in to comment.