summaryrefslogtreecommitdiff
path: root/src/decoder.hpp
diff options
context:
space:
mode:
authorAJ Lewis <aj.lewis@quantum.com>2011-11-09 15:22:20 +0100
committerMartin Sustrik <sustrik@250bpm.com>2011-11-09 15:22:20 +0100
commitc79abee6bcaa996f50be71bd1d3075e3affb469d (patch)
treeddbbe8d56fd65f0949b3f990472365a4b3e01f63 /src/decoder.hpp
parent89962a825697dd9eca057c032ec61de71b075539 (diff)
Get AIX 6.1 compiling again by making msg_t class explicit
Older versions of gcc have problems with in-line forward declarations when there's a naming conflict with a global symbol. Signed-off-by: AJ Lewis <aj.lewis@quantum.com> Expand the original patch to all such forward declarations. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/decoder.hpp')
-rw-r--r--src/decoder.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/decoder.hpp b/src/decoder.hpp
index c6f9100..4afd018 100644
--- a/src/decoder.hpp
+++ b/src/decoder.hpp
@@ -34,6 +34,8 @@
namespace zmq
{
+ class session_base_t;
+
// Helper base class for decoders that know the amount of data to read
// in advance at any moment. Knowing the amount in advance is a property
// of the protocol used. 0MQ framing protocol is based size-prefixed
@@ -193,7 +195,7 @@ namespace zmq
decoder_t (size_t bufsize_, int64_t maxmsgsize_);
~decoder_t ();
- void set_session (class session_base_t *session_);
+ void set_session (zmq::session_base_t *session_);
private:
@@ -202,7 +204,7 @@ namespace zmq
bool flags_ready ();
bool message_ready ();
- class session_base_t *session;
+ zmq::session_base_t *session;
unsigned char tmpbuf [8];
msg_t in_progress;