2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-19 02:12:24 +00:00
Files
fiber/doc
Nat Goodspeed 908bd3ca68 Fix up references to traits_type in stack allocation section.
Provide a link to Boost.Context's stack_traits documentation to look up
is_unbounded(), minimum_size() and maximum_size().

Fix spellings of minimum_size() and maximum_size().

When stack_traits::is_unbounded(), we shouldn't have to care about
stack_traits::maximum_size(). Consistently change:

    ! traits_type::is_unbounded() && size <= traits_type::maximum_size()

to:

    traits_type::is_unbounded() || size <= traits_type::maximum_size()
2016-03-07 21:14:37 -05:00
..
2016-03-04 19:15:41 +01:00
2015-12-29 15:04:13 +01:00
2015-12-29 15:04:13 +01:00
2015-12-04 18:26:49 +01:00
2016-03-04 19:10:22 +01:00
2016-03-04 19:15:41 +01:00
2013-10-26 10:18:35 +02:00
2016-02-16 08:30:50 +01:00