]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/atomic/detail/operations_fwd.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / atomic / detail / operations_fwd.hpp
CommitLineData
7c673cae
FG
1/*
2 * Distributed under the Boost Software License, Version 1.0.
3 * (See accompanying file LICENSE_1_0.txt or copy at
4 * http://www.boost.org/LICENSE_1_0.txt)
5 *
6 * Copyright (c) 2014 Andrey Semashev
7 */
8/*!
9 * \file atomic/detail/operations_fwd.hpp
10 *
11 * This header contains forward declaration of the \c operations template.
12 */
13
14#ifndef BOOST_ATOMIC_DETAIL_OPERATIONS_FWD_HPP_INCLUDED_
15#define BOOST_ATOMIC_DETAIL_OPERATIONS_FWD_HPP_INCLUDED_
16
17#include <cstddef>
18#include <boost/atomic/detail/config.hpp>
19
20#ifdef BOOST_HAS_PRAGMA_ONCE
21#pragma once
22#endif
23
24namespace boost {
25namespace atomics {
26namespace detail {
27
f67539c2
TL
28template< std::size_t Size, std::size_t Alignment, bool Signed >
29struct emulated_operations;
30
7c673cae
FG
31template< std::size_t Size, bool Signed >
32struct operations;
33
34} // namespace detail
35} // namespace atomics
36} // namespace boost
37
38#endif // BOOST_ATOMIC_DETAIL_OPERATIONS_FWD_HPP_INCLUDED_