summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2022-09-30 20:21:00 +0300
committerGeorge Hazan <ghazan@miranda.im>2022-09-30 20:21:00 +0300
commitd31328a7ea6e180fa534155d7e0b1730784f5410 (patch)
tree8753a404993079b86e3c71aba94efaf0dbac686b /include
parentc67e7825ccd72b889b6b8448d17e206c88bb21ca (diff)
shitty C++ doesn't work without this operator
Diffstat (limited to 'include')
-rw-r--r--include/m_system.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/m_system.h b/include/m_system.h
index f961e15e3c..2296a7993b 100644
--- a/include/m_system.h
+++ b/include/m_system.h
@@ -477,6 +477,7 @@ public:
MBinBuffer(size_t preAlloc);
MBinBuffer(const MBinBuffer &orig);
~MBinBuffer();
+ MBinBuffer& operator=(MBinBuffer &&) noexcept;
__forceinline char* data() const { return m_buf; }
__forceinline bool isEmpty() const { return m_buf == nullptr; }