]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/atomic/detail/extra_fp_operations_fwd.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / atomic / detail / extra_fp_operations_fwd.hpp
CommitLineData
11fdf7f2
TL
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) 2018 Andrey Semashev
7 */
8/*!
9 * \file atomic/detail/extra_fp_operations_fwd.hpp
10 *
11 * This header contains forward declaration of the \c extra_fp_operations template.
12 */
13
14#ifndef BOOST_ATOMIC_DETAIL_EXTRA_FP_OPERATIONS_FWD_HPP_INCLUDED_
15#define BOOST_ATOMIC_DETAIL_EXTRA_FP_OPERATIONS_FWD_HPP_INCLUDED_
16
17#include <cstddef>
18#include <boost/atomic/detail/config.hpp>
20effc67 19#include <boost/atomic/detail/header.hpp>
11fdf7f2
TL
20
21#ifdef BOOST_HAS_PRAGMA_ONCE
22#pragma once
23#endif
24
25namespace boost {
26namespace atomics {
27namespace detail {
28
20effc67 29template< typename Base, typename Value = typename Base::value_type, std::size_t Size = sizeof(typename Base::storage_type), bool = Base::is_always_lock_free >
11fdf7f2
TL
30struct extra_fp_operations;
31
32} // namespace detail
33} // namespace atomics
34} // namespace boost
35
20effc67
TL
36#include <boost/atomic/detail/footer.hpp>
37
11fdf7f2 38#endif // BOOST_ATOMIC_DETAIL_EXTRA_FP_OPERATIONS_FWD_HPP_INCLUDED_