Skip to content

Commit

Permalink
fix link error of sio::event accessors
Browse files Browse the repository at this point in the history
  • Loading branch information
melode11 committed Apr 29, 2015
1 parent 933ee08 commit 035ad01
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/sio_socket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,16 @@ namespace sio
}
};

inline
const std::string& event::get_nsp() const
{
return m_nsp;
}

inline
const std::string& event::get_name() const
{
return m_name;
}

inline
const message::ptr& event::get_message() const
{
if(m_messages.size()>0)
Expand All @@ -60,19 +57,16 @@ namespace sio
}
}

inline
const message::list& event::get_messages() const
{
return m_messages;
}

inline
bool event::need_ack() const
{
return m_need_ack;
}

inline
void event::put_ack_message(message::ptr const& ack_message)
{
if(m_need_ack)
Expand Down Expand Up @@ -102,6 +96,7 @@ namespace sio
return m_ack_message;
}

inline
message::ptr& event::get_ack_message_impl()
{
return m_ack_message;
Expand Down

0 comments on commit 035ad01

Please sign in to comment.