delete copy constructor and operator assign for most classes
This commit is contained in:
@@ -44,6 +44,9 @@ public:
|
||||
public:
|
||||
ClientPool() = default;
|
||||
|
||||
ClientPool(const ClientPool&) = delete;
|
||||
ClientPool& operator=(const ClientPool&) = delete;
|
||||
|
||||
~ClientPool();
|
||||
|
||||
ClientPtr Get(const Key& key) const;
|
||||
|
||||
Reference in New Issue
Block a user