mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
clang-tidy: google-explicit-constructor
This commit is contained in:
@@ -287,7 +287,7 @@ class future final {
|
||||
future(const future&) = delete;
|
||||
|
||||
template <typename R>
|
||||
future(future<R>&& oth) noexcept
|
||||
future(future<R>&& oth) noexcept // NOLINT
|
||||
: future(oth.then([](R&& val) -> T { return val; })) {}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user