mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Mark some move and move-assignment ctors noexcept
This commit is contained in:
@@ -93,7 +93,8 @@ private:
|
||||
++counter_;
|
||||
}
|
||||
|
||||
Wrapper (Wrapper&& rhs)
|
||||
Wrapper (Wrapper&& rhs) noexcept(
|
||||
std::is_nothrow_move_constructible<Closure>::value)
|
||||
: counter_ (rhs.counter_)
|
||||
, closure_ (std::move (rhs.closure_))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user