We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c61446b commit e9eac32Copy full SHA for e9eac32
include/msgpack/sbuffer.hpp
@@ -56,7 +56,7 @@ class sbuffer {
56
sbuffer& operator=(const sbuffer&) = delete;
57
58
sbuffer(sbuffer&& other) :
59
- m_size(other.m_size), m_alloc(other.m_alloc), m_data(other.m_data)
+ m_size(other.m_size), m_data(other.m_data), m_alloc(other.m_alloc)
60
{
61
other.m_size = other.m_alloc = 0;
62
other.m_data = nullptr;
0 commit comments