From d31328a7ea6e180fa534155d7e0b1730784f5410 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 30 Sep 2022 20:21:00 +0300 Subject: shitty C++ doesn't work without this operator --- include/m_system.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') 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; } -- cgit v1.2.3