2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-20 14:42:21 +00:00

relax to C++11

This commit is contained in:
Oliver Kowalke
2015-12-09 19:20:43 +01:00
parent 73b5d9fffc
commit 5b2effab58
3 changed files with 40 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ thread_local
context *
context::active_;
static auto make_dispatcher_context( scheduler * sched) {
static intrusive_ptr< context > make_dispatcher_context( scheduler * sched) {
BOOST_ASSERT( nullptr != sched);
default_stack salloc; // use default satck-size
boost::context::stack_context sctx = salloc.allocate();