Boost logo

Boost-Commit :

From: pdimov_at_[hidden]
Date: 2007-09-11 16:58:20


Author: pdimov
Date: 2007-09-11 16:58:19 EDT (Tue, 11 Sep 2007)
New Revision: 39199
URL: http://svn.boost.org/trac/boost/changeset/39199

Log:
Fixes #1243
Text files modified:
   trunk/boost/detail/lightweight_mutex.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/detail/lightweight_mutex.hpp
==============================================================================
--- trunk/boost/detail/lightweight_mutex.hpp (original)
+++ trunk/boost/detail/lightweight_mutex.hpp 2007-09-11 16:58:19 EDT (Tue, 11 Sep 2007)
@@ -30,10 +30,10 @@
 
 #if !defined(BOOST_HAS_THREADS)
 # include <boost/detail/lwm_nop.hpp>
-#elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__)
-# include <boost/detail/lwm_win32_cs.hpp>
 #elif defined(BOOST_HAS_PTHREADS)
 # include <boost/detail/lwm_pthreads.hpp>
+#elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__)
+# include <boost/detail/lwm_win32_cs.hpp>
 #else
 // Use #define BOOST_DISABLE_THREADS to avoid the error
 # error Unrecognized threading platform


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk