]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/thread/test/sync/mutual_exclusion/locks/strict_lock/types_pass.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / thread / test / sync / mutual_exclusion / locks / strict_lock / types_pass.cpp
1 // Copyright (C) 2012 Vicente J. Botet Escriba
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 // <boost/thread/mutex.hpp>
7
8 // <mutex>
9
10 // template <class Mutex>
11 // class strict_lock
12 // {
13 // public:
14 // typedef Mutex mutex_type;
15 // ...
16 // };
17
18
19 #include <boost/thread/strict_lock.hpp>
20 #include <boost/thread/mutex.hpp>
21 #include <boost/static_assert.hpp>
22 #include <boost/type_traits/is_same.hpp>
23 #include <boost/detail/lightweight_test.hpp>
24
25 int main()
26 {
27 BOOST_STATIC_ASSERT_MSG((boost::is_same<boost::strict_lock<boost::mutex>::mutex_type,
28 boost::mutex>::value), "");
29
30 BOOST_STATIC_ASSERT_MSG((boost::is_strict_lock<boost::strict_lock<boost::mutex> >::value), "");
31
32 return boost::report_errors();
33 }
34