]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/log/config/atomic-int32/atomic_int32.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / log / config / atomic-int32 / atomic_int32.cpp
1 /*
2 * Copyright Andrey Semashev 2016.
3 * Distributed under the Boost Software License, Version 1.0.
4 * (See accompanying file LICENSE_1_0.txt or copy at
5 * http://www.boost.org/LICENSE_1_0.txt)
6 */
7
8 #include <boost/atomic.hpp>
9
10 #if !defined(BOOST_ATOMIC_INT32_LOCK_FREE) || (BOOST_ATOMIC_INT32_LOCK_FREE+0) != 2
11 #error Boost.Log: Native 32-bit atomic operations are required but not supported by Boost.Atomic on the target platform
12 #endif
13
14 int main(int, char*[])
15 {
16 return 0;
17 }