Commit 9a38d122 authored by Orvid King's avatar Orvid King Committed by Facebook Github Bot

Fix build of DistributedMutex

Summary:
It was broken, fix it.

Fixes https://github.com/facebook/folly/issues/1092

Reviewed By: yfeldblum

Differential Revision: D14842180

fbshipit-source-id: 899c95fdac3622c78c9c6f326cd14898007ddf6c
parent 845936ce
...@@ -206,7 +206,7 @@ using CombineFunction = detail::InlineFunctionRef<void(), 48>; ...@@ -206,7 +206,7 @@ using CombineFunction = detail::InlineFunctionRef<void(), 48>;
template <template <typename> class Atomic> template <template <typename> class Atomic>
class Waiter { class Waiter {
public: public:
Waiter() = default; Waiter() {}
Waiter(Waiter&&) = delete; Waiter(Waiter&&) = delete;
Waiter(const Waiter&) = delete; Waiter(const Waiter&) = delete;
Waiter& operator=(Waiter&&) = delete; Waiter& operator=(Waiter&&) = delete;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment