summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/Url.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-03-25 13:34:44 +0000
committerAlan Conway <aconway@apache.org>2008-03-25 13:34:44 +0000
commitb449826a61eaa0a754e55ca8143882216a07d7e0 (patch)
tree9743d3b8a0f5479260beea3a7b47ac1fd8be1801 /cpp/src/qpid/Url.cpp
parentbb542cee9af73a016360aa2d00addfee0206cad8 (diff)
downloadqpid-python-b449826a61eaa0a754e55ca8143882216a07d7e0.tar.gz
Fix compile errors/warnings with gcc 4.3
- added missing #includes that were implicitly included via old headers. - add namespace-qualifiers to fix "changes meaning of name" warnings. - ./qpid/ptr_map.h:51: fixed "qualified return value" warning. - use const char* for "conversion from string constant to ‘char*’" warnings Applied patch from https://issues.apache.org/jira/browse/QPID-869 remove depenency on boost/date_time, causes warnings with gcc 4.3. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@640806 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/Url.cpp')
-rw-r--r--cpp/src/qpid/Url.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/qpid/Url.cpp b/cpp/src/qpid/Url.cpp
index aa53d5cbe2..090cbb712a 100644
--- a/cpp/src/qpid/Url.cpp
+++ b/cpp/src/qpid/Url.cpp
@@ -20,10 +20,12 @@
#include "qpid/Exception.h"
#include "qpid/Msg.h"
-#include <sstream>
+#include <limits.h> // NB: must be before boost/spirit headers.
#include <boost/spirit.hpp>
#include <boost/spirit/actor.hpp>
+#include <sstream>
+
#include <sys/ioctl.h>
#include <net/if.h>
#include <unistd.h>