Skip to content

Commit

Permalink
Merge pull request zeromq#200 from zavorka/zmq-msg-t-alignment
Browse files Browse the repository at this point in the history
Flip the order of _msg and _sent in zmq::frame
  • Loading branch information
bluca authored Oct 5, 2017
2 parents 89dc262 + f619a54 commit 0285fae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zmqpp/frame.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ class ZMQPP_EXPORT frame
frame copy() const;

private:
bool _sent;
zmq_msg_t _msg;

bool _sent;

// Disable implicit copy support, code must request a copy to clone
frame(frame const&) NOEXCEPT ZMQPP_EXPLICITLY_DELETED;
frame& operator=(frame const&) NOEXCEPT ZMQPP_EXPLICITLY_DELETED;
Expand Down

0 comments on commit 0285fae

Please sign in to comment.