From 97a4ecb845bc4e5e4d46ca9436d0f6ae36a47012 Mon Sep 17 00:00:00 2001 From: cxl Date: Fri, 20 Mar 2009 13:48:02 +0000 Subject: [PATCH] Mingw CondtionVariable fixed git-svn-id: svn://ultimatepp.org/upp/trunk@991 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/Mt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/Core/Mt.h b/uppsrc/Core/Mt.h index c5f8aa38e..81a54dfb2 100644 --- a/uppsrc/Core/Mt.h +++ b/uppsrc/Core/Mt.h @@ -234,7 +234,7 @@ class ConditionVariable { Mutex mutex; friend struct sCVWaiter_; - sCVWaiter_ *head, *tail; + struct sCVWaiter_ *head, *tail; public: void Wait(Mutex& m);