]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/thread/build/has_atomic_flag_lockfree_test.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / thread / build / has_atomic_flag_lockfree_test.cpp
1 // Copyright (c) 2013, Petr Machata, Red Hat Inc.
2 //
3 // Use modification and distribution are subject to the boost Software
4 // License, Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt).
5
6 #include "../../../boost/atomic.hpp"
7 #include "../../../boost/static_assert.hpp"
8
9 int main(int argc, char *argv[])
10 {
11 BOOST_STATIC_ASSERT(BOOST_ATOMIC_FLAG_LOCK_FREE);
12 return 0;
13 }