]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/atomic.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / atomic.hpp
1 #ifndef BOOST_ATOMIC_HPP
2 #define BOOST_ATOMIC_HPP
3
4 // Copyright (c) 2011 Helge Bahmann
5 // Copyright (c) 2020 Andrey Semashev
6 //
7 // Distributed under the Boost Software License, Version 1.0.
8 // See accompanying file LICENSE_1_0.txt or copy at
9 // http://www.boost.org/LICENSE_1_0.txt)
10
11 // This header includes all Boost.Atomic public headers
12
13 #include <boost/memory_order.hpp>
14 #include <boost/atomic/capabilities.hpp>
15 #include <boost/atomic/atomic.hpp>
16 #include <boost/atomic/atomic_ref.hpp>
17 #include <boost/atomic/atomic_flag.hpp>
18 #include <boost/atomic/fences.hpp>
19
20 #ifdef BOOST_HAS_PRAGMA_ONCE
21 #pragma once
22 #endif
23
24 #endif