]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/context/doc/preallocated.qbk
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / context / doc / preallocated.qbk
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
8 [section Struct `preallocated`]
9
10 struct preallocated {
11 void * sp;
12 std::size_t size;
13 stack_context sctx;
14
15 preallocated( void * sp, std:size_t size, stack_allocator sctx) noexcept;
16 };
17
18 [heading Constructor]
19
20 preallocated( void * sp, std:size_t size, stack_allocator sctx) noexcept;
21
22 [variablelist
23 [[Effects:] [Creates an object of preallocated.]]
24 ]
25
26
27 [endsect]