]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/fiber/include/boost/fiber/pooled_fixedsize_stack.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / fiber / include / boost / fiber / pooled_fixedsize_stack.hpp
CommitLineData
7c673cae
FG
1
2// Copyright Oliver Kowalke 2014.
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#ifndef BOOST_FIBERS_POOLED_FIXEDSIZE_STACK_H
8#define BOOST_FIBERS_POOLED_FIXEDSIZE_STACK_H
9
10#include <boost/config.hpp>
11#include <boost/context/pooled_fixedsize_stack.hpp>
12
13#include <boost/fiber/detail/config.hpp>
14
15#ifdef BOOST_HAS_ABI_HEADERS
16# include BOOST_ABI_PREFIX
17#endif
18
19namespace boost {
20namespace fibers {
21
22using pooled_fixedsize_stack = boost::context::pooled_fixedsize_stack;
23
24}}
25
26#ifdef BOOST_HAS_ABI_HEADERS
27# include BOOST_ABI_SUFFIX
28#endif
29
30#endif // BOOST_FIBERS_POOLED_FIXEDSIZE_STACK_H