diff options
| author | AJ Lewis <aj.lewis@quantum.com> | 2011-11-09 15:22:20 +0100 | 
|---|---|---|
| committer | Martin Sustrik <sustrik@250bpm.com> | 2011-11-09 15:22:20 +0100 | 
| commit | c79abee6bcaa996f50be71bd1d3075e3affb469d (patch) | |
| tree | ddbbe8d56fd65f0949b3f990472365a4b3e01f63 /src/encoder.hpp | |
| parent | 89962a825697dd9eca057c032ec61de71b075539 (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/encoder.hpp')
| -rw-r--r-- | src/encoder.hpp | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/src/encoder.hpp b/src/encoder.hpp index 8001c4e..f521b6b 100644 --- a/src/encoder.hpp +++ b/src/encoder.hpp @@ -33,6 +33,8 @@  namespace zmq  { +    class session_base_t; +      //  Helper base class for encoders. It implements the state machine that      //  fills the outgoing buffer. Derived classes should implement individual      //  state machine actions. @@ -173,14 +175,14 @@ namespace zmq          encoder_t (size_t bufsize_);          ~encoder_t (); -        void set_session (class session_base_t *session_); +        void set_session (zmq::session_base_t *session_);      private:          bool size_ready ();          bool message_ready (); -        class session_base_t *session; +        zmq::session_base_t *session;          msg_t in_progress;          unsigned char tmpbuf [10]; | 
