diff options
author | Alan Conway <aconway@apache.org> | 2009-03-10 12:34:49 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-03-10 12:34:49 +0000 |
commit | 0175e0e6bbcddf16e546779d6827d35cec79208a (patch) | |
tree | 5c67b357a091079bab4be534a060793b7797912c /cpp | |
parent | c2aa2f3a3c4141dce6232679227861b083a18c1f (diff) | |
download | qpid-python-0175e0e6bbcddf16e546779d6827d35cec79208a.tar.gz |
Add missing #includes to build with gcc 4.4.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@752092 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/qpid/broker/Daemon.h | 4 | ||||
-rw-r--r-- | cpp/src/qpid/console/ClassKey.cpp | 1 | ||||
-rw-r--r-- | cpp/src/qpid/framing/Uuid.h | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Daemon.h b/cpp/src/qpid/broker/Daemon.h index 98468debb7..a9cd98bce2 100644 --- a/cpp/src/qpid/broker/Daemon.h +++ b/cpp/src/qpid/broker/Daemon.h @@ -19,10 +19,12 @@ * */ -#include <string> +#include "qpid/sys/IntegerTypes.h" #include <boost/scoped_ptr.hpp> #include <boost/function.hpp> #include <boost/noncopyable.hpp> +#include <string> + namespace qpid { namespace broker { diff --git a/cpp/src/qpid/console/ClassKey.cpp b/cpp/src/qpid/console/ClassKey.cpp index 1780b03f94..b97eb3ca44 100644 --- a/cpp/src/qpid/console/ClassKey.cpp +++ b/cpp/src/qpid/console/ClassKey.cpp @@ -21,6 +21,7 @@ #include "ClassKey.h" #include <string.h> +#include <cstdio> using namespace std; using namespace qpid::console; diff --git a/cpp/src/qpid/framing/Uuid.h b/cpp/src/qpid/framing/Uuid.h index 2fcbb5a261..7037c5be29 100644 --- a/cpp/src/qpid/framing/Uuid.h +++ b/cpp/src/qpid/framing/Uuid.h @@ -20,6 +20,7 @@ */ #include "qpid/sys/uuid.h" +#include "qpid/sys/IntegerTypes.h" #include <boost/array.hpp> |