diff --git a/include/boost/fiber/fiber.hpp b/include/boost/fiber/fiber.hpp index 9accd97e..939e74bd 100644 --- a/include/boost/fiber/fiber.hpp +++ b/include/boost/fiber/fiber.hpp @@ -73,7 +73,8 @@ public: typedef void ( * fiber_fn)(); explicit fiber( fiber_fn fn, attributes const& attr = attributes(), - stack_allocator const& stack_alloc = stack_allocator() ) : + stack_allocator const& stack_alloc = stack_allocator(), + std::allocator< fiber > const& alloc = std::allocator< fiber >() ) : impl_() { typedef detail::fiber_object<