mirror of
https://github.com/boostorg/asio.git
synced 2026-01-19 04:02:09 +00:00
Fix unused parameter warning.
This commit is contained in:
@@ -53,7 +53,7 @@ public:
|
||||
}
|
||||
|
||||
// Move constructor.
|
||||
null_thread(null_thread&& other) noexcept
|
||||
null_thread(null_thread&&) noexcept
|
||||
{
|
||||
}
|
||||
|
||||
@@ -63,7 +63,7 @@ public:
|
||||
}
|
||||
|
||||
// Move assignment.
|
||||
null_thread& operator=(null_thread&& other) noexcept
|
||||
null_thread& operator=(null_thread&&) noexcept
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user