mirror of
https://github.com/zeromq/libzmq.git
synced 2025-11-07 05:58:45 +01:00
Problem: redundant inline/ZMQ_FINAL declarations
Solution: remove them
This commit is contained in:
@@ -40,9 +40,9 @@ class v1_decoder_t ZMQ_FINAL : public decoder_base_t<v1_decoder_t>
|
||||
{
|
||||
public:
|
||||
v1_decoder_t (size_t bufsize_, int64_t maxmsgsize_);
|
||||
~v1_decoder_t () ZMQ_FINAL;
|
||||
~v1_decoder_t ();
|
||||
|
||||
msg_t *msg () ZMQ_FINAL { return &_in_progress; }
|
||||
msg_t *msg () { return &_in_progress; }
|
||||
|
||||
private:
|
||||
int one_byte_size_ready (unsigned char const *);
|
||||
|
||||
Reference in New Issue
Block a user