thread/WindowsFuture: remove wrong address_of operator
This commit is contained in:

committed by
Max Kellermann

parent
bcb393628e
commit
70879f0abc
@@ -130,7 +130,7 @@ public:
|
||||
|
||||
void set_value(const T &value) {
|
||||
std::unique_lock<CriticalSection> lock(mutex);
|
||||
if (!std::holds_alternative<std::monostate>(&result)) {
|
||||
if (!std::holds_alternative<std::monostate>(result)) {
|
||||
throw WinFutureError(WinFutureErrc::promise_already_satisfied);
|
||||
}
|
||||
result.template emplace<T>(value);
|
||||
|
Reference in New Issue
Block a user