]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/atomic.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / atomic.hpp
CommitLineData
7c673cae
FG
1#ifndef BOOST_ATOMIC_HPP
2#define BOOST_ATOMIC_HPP
3
4// Copyright (c) 2011 Helge Bahmann
f67539c2 5// Copyright (c) 2020 Andrey Semashev
7c673cae
FG
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
f67539c2
TL
13#include <boost/memory_order.hpp>
14#include <boost/atomic/capabilities.hpp>
7c673cae 15#include <boost/atomic/atomic.hpp>
f67539c2
TL
16#include <boost/atomic/atomic_ref.hpp>
17#include <boost/atomic/atomic_flag.hpp>
18#include <boost/atomic/fences.hpp>
7c673cae
FG
19
20#ifdef BOOST_HAS_PRAGMA_ONCE
21#pragma once
22#endif
23
24#endif