2
0
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:
Christopher Kohlhoff
2025-11-04 23:47:17 +11:00
parent 7f51169e51
commit 0be0631ef2

View File

@@ -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;
}