summaryrefslogtreecommitdiffabout
path: root/lib
authorMichael Krelin <hacker@klever.net>2008-06-27 18:32:31 (UTC)
committer Michael Krelin <hacker@klever.net>2008-06-27 18:32:31 (UTC)
commita344edbdddeac51524001faa10d06f85cfdb041c (patch) (side-by-side diff)
treebca2afabf4fdc53324fc48e101fc9de068404e47 /lib
parent9737a1eb0f01cdc805c4a28f0a86734eb3bb4d31 (diff)
downloadlibopkele-a344edbdddeac51524001faa10d06f85cfdb041c.zip
libopkele-a344edbdddeac51524001faa10d06f85cfdb041c.tar.gz
libopkele-a344edbdddeac51524001faa10d06f85cfdb041c.tar.bz2
Fix for gcc 4.3
Thanks to Oden Eriksson of Mandriva for report and patch Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (limited to 'lib') (more/less context) (ignore whitespace changes)
-rw-r--r--lib/fields.cc2
-rw-r--r--lib/message.cc2
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/fields.cc b/lib/fields.cc
index d494098..91fbc41 100644
--- a/lib/fields.cc
+++ b/lib/fields.cc
@@ -1,8 +1,10 @@
#include <opkele/types.h>
#include <opkele/exception.h>
#include <opkele/util.h>
+#include <algorithm>
namespace opkele {
+ using std::for_each;
using std::unary_function;
struct __om_copier : public unary_function<const string&,void> {
diff --git a/lib/message.cc b/lib/message.cc
index b2324b7..524946a 100644
--- a/lib/message.cc
+++ b/lib/message.cc
@@ -1,4 +1,6 @@
#include <cassert>
+#include <algorithm>
+
#include <opkele/types.h>
#include <opkele/exception.h>
#include <opkele/util.h>