mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-12 10:33:52 +01:00
Fixes warning
This type of function should not throw, adding noexcept
This commit is contained in:
parent
d96155cbc3
commit
fa0f112ac6
@ -343,10 +343,10 @@ class multipart_t
|
||||
multipart_t(message_t &&message) { add(std::move(message)); }
|
||||
|
||||
// Move constructor
|
||||
multipart_t(multipart_t &&other) { m_parts = std::move(other.m_parts); }
|
||||
multipart_t(multipart_t &&other) noexcept { m_parts = std::move(other.m_parts); }
|
||||
|
||||
// Move assignment operator
|
||||
multipart_t &operator=(multipart_t &&other)
|
||||
multipart_t &operator=(multipart_t &&other) noexcept
|
||||
{
|
||||
m_parts = std::move(other.m_parts);
|
||||
return *this;
|
||||
|
Loading…
Reference in New Issue
Block a user