summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Bacher <seb128@ubuntu.com>2007-11-20 19:19:04 +0000
committerSebastien Bacher <sbacher@src.gnome.org>2007-11-20 19:19:04 +0000
commitaf3e3dc1bad45757b3892475f00839b2a7374065 (patch)
tree3d2250c4a6d6625f0cc845a336631f1ab72cb799
parent08edb3cc1f1489a0c09cf1ef527e2b24338c2162 (diff)
downloadglibmm-af3e3dc1bad45757b3892475f00839b2a7374065.tar.gz
fix build issue when using gcc4.3 (#498438)
2007-11-20 Sebastien Bacher <seb128@ubuntu.com> * glib/glibmm/object.cc: fix build issue when using gcc4.3 (#498438) svn path=/branches/glibmm-2-14/; revision=466
-rw-r--r--ChangeLog4
-rw-r--r--glib/glibmm/object.cc1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f5b29a06..cfbb3f5e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-11-20 Sebastien Bacher <seb128@ubuntu.com>
+
+ * glib/glibmm/object.cc: fix build issue when using gcc4.3 (#498438)
+
2007-11-13 Murray Cumming <murrayc@murrayc.com>
* glib/glibmm/refptr.h: Use @newin2p16 in the reset() documentation.
diff --git a/glib/glibmm/object.cc b/glib/glibmm/object.cc
index 52ab0c87..3c58de5e 100644
--- a/glib/glibmm/object.cc
+++ b/glib/glibmm/object.cc
@@ -27,6 +27,7 @@
#include <gobject/gvaluecollector.h>
#include <cstdarg>
+#include <cstring>
//Weak references:
//I'm not sure what the point of these are apart from being a hacky way out of circular references,