From d0b26a90ffea946465bf2081c122d4b096f84ec3 Mon Sep 17 00:00:00 2001 From: Maarten Bent Date: Tue, 29 Oct 2019 00:34:01 +0100 Subject: [PATCH] Resolve -Wdeprecated-copy warning in wxDataFormat Implicitly-declared 'constexpr wxDataFormat::wxDataFormat(const wxDataFormat&)' is deprecated because 'wxDataFormat' has user-provided 'wxDataFormat& wxDataFormat::operator=(const wxDataFormat&)'. --- include/wx/msw/ole/dataform.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/wx/msw/ole/dataform.h b/include/wx/msw/ole/dataform.h index 26959099f7..77ebf70e4d 100644 --- a/include/wx/msw/ole/dataform.h +++ b/include/wx/msw/ole/dataform.h @@ -33,8 +33,6 @@ public: wxDataFormat& operator=(NativeFormat format) { m_format = format; return *this; } - wxDataFormat& operator=(const wxDataFormat& format) - { m_format = format.m_format; return *this; } // default copy ctor/assignment operators ok