preallocated.qbk 650 B

123456789101112131415161718192021222324252627
  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. [section Struct `preallocated`]
  8. struct preallocated {
  9. void * sp;
  10. std::size_t size;
  11. stack_context sctx;
  12. preallocated( void * sp, std:size_t size, stack_allocator sctx) noexcept;
  13. };
  14. [heading Constructor]
  15. preallocated( void * sp, std:size_t size, stack_allocator sctx) noexcept;
  16. [variablelist
  17. [[Effects:] [Creates an object of preallocated.]]
  18. ]
  19. [endsect]