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

remove noexcept specifier in boudned_channel

This commit is contained in:
Oliver Kowalke
2015-12-16 19:14:10 +01:00
parent 7fd45063db
commit af9b2cef21

View File

@@ -312,7 +312,7 @@ public:
return push_wait_until_( { detail::convert( ptr) }, timeout_time, lk);
}
channel_op_status try_push( value_type const& va) noexcept {
channel_op_status try_push( value_type const& va) {
typename allocator_traits_t::pointer ptr{
allocator_traits_t::allocate( alloc_, 1) };
try {
@@ -325,7 +325,7 @@ public:
return try_push_( { detail::convert( ptr) }, lk);
}
channel_op_status try_push( value_type && va) noexcept {
channel_op_status try_push( value_type && va) {
typename allocator_traits_t::pointer ptr{
allocator_traits_t::allocate( alloc_, 1) };
try {