Clear minor warnings (#214)

Clear warnings from the clang compiler.
This commit is contained in:
Changho Hwang
2023-11-14 09:28:48 +08:00
committed by GitHub
parent 0863e862f5
commit 3521fb0280
9 changed files with 119 additions and 155 deletions

View File

@@ -551,11 +551,6 @@ class NonblockingFuture {
/// @param future The shared future to move.
NonblockingFuture(std::shared_future<T>&& future) : future(std::move(future)) {}
/// Copy constructor.
///
/// @param other The @ref NonblockingFuture to copy.
NonblockingFuture(const NonblockingFuture& other) = default;
/// Check if the value is ready to be retrieved.
///
/// @return True if the value is ready, false otherwise.