diff --git a/src/util/CircularBuffer.hxx b/src/util/CircularBuffer.hxx index 99ee3046b..de7b69f98 100644 --- a/src/util/CircularBuffer.hxx +++ b/src/util/CircularBuffer.hxx @@ -45,6 +45,7 @@ public: :capacity(_capacity), data(_data) {} CircularBuffer(const CircularBuffer &other) = delete; + CircularBuffer &operator=(const CircularBuffer &other) = delete; protected: constexpr size_type Next(size_type i) const noexcept {