diff options
| author | Remko Tronçon <git@el-tramo.be> | 2012-12-23 13:16:26 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2012-12-23 14:43:26 (GMT) | 
| commit | 491ddd570a752cf9bda85933bed0c6942e39b1f9 (patch) | |
| tree | 10c25c1be8cc08d0497df1dccd56a10fbb30beee /3rdParty/Boost/src/boost/thread/win32/mutex.hpp | |
| parent | da7d7a0ca71b80281aa9ff2526290b61ccb0cc60 (diff) | |
| download | swift-contrib-491ddd570a752cf9bda85933bed0c6942e39b1f9.zip swift-contrib-491ddd570a752cf9bda85933bed0c6942e39b1f9.tar.bz2 | |
Update Boost to 1.52.0.
Change-Id: I1e56bea2600bf2ed9c5b3aba8c4f9d2a0f350e77
Diffstat (limited to '3rdParty/Boost/src/boost/thread/win32/mutex.hpp')
| -rw-r--r-- | 3rdParty/Boost/src/boost/thread/win32/mutex.hpp | 12 | 
1 files changed, 4 insertions, 8 deletions
| diff --git a/3rdParty/Boost/src/boost/thread/win32/mutex.hpp b/3rdParty/Boost/src/boost/thread/win32/mutex.hpp index d59fbfa..85a00e2 100644 --- a/3rdParty/Boost/src/boost/thread/win32/mutex.hpp +++ b/3rdParty/Boost/src/boost/thread/win32/mutex.hpp @@ -1,12 +1,12 @@  #ifndef BOOST_THREAD_WIN32_MUTEX_HPP  #define BOOST_THREAD_WIN32_MUTEX_HPP  // (C) Copyright 2005-7 Anthony Williams +// (C) Copyright 2011-2012 Vicente J. Botet Escriba  // Distributed under the Boost Software License, Version 1.0. (See  // accompanying file LICENSE_1_0.txt or copy at  // http://www.boost.org/LICENSE_1_0.txt) -#include "basic_timed_mutex.hpp" -#include <boost/utility.hpp> +#include <boost/thread/win32/basic_timed_mutex.hpp>  #include <boost/thread/exceptions.hpp>  #include <boost/thread/locks.hpp> @@ -22,10 +22,8 @@ namespace boost      class mutex:          public ::boost::detail::underlying_mutex      { -    private: -        mutex(mutex const&); -        mutex& operator=(mutex const&);      public: +        BOOST_THREAD_NO_COPYABLE(mutex)          mutex()          {              initialize(); @@ -44,10 +42,8 @@ namespace boost      class timed_mutex:          public ::boost::detail::basic_timed_mutex      { -    private: -        timed_mutex(timed_mutex const&); -        timed_mutex& operator=(timed_mutex const&);      public: +        BOOST_THREAD_NO_COPYABLE(timed_mutex)          timed_mutex()          {              initialize(); | 
 Swift
 Swift