mirror of
https://github.com/boostorg/fiber.git
synced 2026-02-18 14:02:18 +00:00
add missing noexcept specifier for asio::round_robin
This commit is contained in:
@@ -71,7 +71,7 @@ public:
|
||||
|
||||
void spawn( detail::fiber_base::ptr_t const&);
|
||||
|
||||
void priority( detail::fiber_base::ptr_t const&, int);
|
||||
void priority( detail::fiber_base::ptr_t const&, int) BOOST_NOEXCEPT;
|
||||
|
||||
void join( detail::fiber_base::ptr_t const&);
|
||||
|
||||
|
||||
@@ -206,7 +206,7 @@ round_robin::join( detail::fiber_base::ptr_t const& f)
|
||||
}
|
||||
|
||||
void
|
||||
round_robin::priority( detail::fiber_base::ptr_t const& f, int prio)
|
||||
round_robin::priority( detail::fiber_base::ptr_t const& f, int prio) BOOST_NOEXCEPT
|
||||
{
|
||||
BOOST_ASSERT( f);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user