mempool: apply rule of 5 to epochguard.h, fix compiler warnings

This commit is contained in:
Jon Atack 2021-07-18 01:10:40 +02:00
parent f8b20fd35b
commit 7b3a20b260
No known key found for this signature in database
GPG Key ID: 4F5721B3D0E3921D

View File

@ -40,6 +40,9 @@ public:
Epoch() = default; Epoch() = default;
Epoch(const Epoch&) = delete; Epoch(const Epoch&) = delete;
Epoch& operator=(const Epoch&) = delete; Epoch& operator=(const Epoch&) = delete;
Epoch(Epoch&&) = delete;
Epoch& operator=(Epoch&&) = delete;
~Epoch() = default;
bool guarded() const { return m_guarded; } bool guarded() const { return m_guarded; }
@ -51,6 +54,13 @@ public:
// only allow modification via Epoch member functions // only allow modification via Epoch member functions
friend class Epoch; friend class Epoch;
Marker& operator=(const Marker&) = delete; Marker& operator=(const Marker&) = delete;
public:
Marker() = default;
Marker(const Marker&) = default;
Marker(Marker&&) = delete;
Marker& operator=(Marker&&) = delete;
~Marker() = default;
}; };
class SCOPED_LOCKABLE Guard class SCOPED_LOCKABLE Guard