From cd989b24ae41129b94c36c90f15f42d5e3e6f885 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 21 Jul 2003 23:16:57 +0000 Subject: [PATCH] suppress warning about not being able to generate copy ctor/operator=() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22221 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/list.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wx/list.h b/include/wx/list.h index 57351e9469..9d64eafea3 100644 --- a/include/wx/list.h +++ b/include/wx/list.h @@ -586,6 +586,8 @@ private: { wxNodeBase::SetData(data); } \ \ virtual void DeleteData(); \ + \ + DECLARE_NO_COPY_CLASS(nodetype) \ }; \ \ classexp name : public wxListBase \