pool: no copy constructor
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-01-03 02:49:23 +01:00
parent f831c16bce
commit 69cc71c749
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

1
pool.h
View File

@ -12,6 +12,7 @@ namespace accumulator {
class Pool {
public:
Pool() noexcept {};
Pool(const Pool& pool) = delete; // no copy
~Pool() noexcept = default;
// TODO(me): this public setter should be fixed?