From 11632c43fa1605c15419f1b0fa9f9e970c0be827 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 3 Apr 2002 01:16:04 +0000 Subject: [PATCH] Since wxConditionInternal is a friend of wxMutex and wxMutex has copy prevention, then wxConditionInternal needs copy protection too so the default copy and assignment won't generate link errors. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14918 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/thread.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/msw/thread.cpp b/src/msw/thread.cpp index c516a161d7..e2c76f9389 100644 --- a/src/msw/thread.cpp +++ b/src/msw/thread.cpp @@ -371,6 +371,8 @@ private: wxMutex& m_mutex; wxSemaphore m_semaphore; + + DECLARE_NO_COPY_CLASS(wxConditionInternal) }; wxConditionInternal::wxConditionInternal(wxMutex& mutex) -- 2.45.2