Remove incorrect = default

This commit is contained in:
jeremy 2022-11-29 17:15:52 +01:00
parent f107ef8aea
commit 00a4127e4e

View File

@ -185,7 +185,7 @@ class ValidFramesConsumer {
public:
explicit ValidFramesConsumer(MultiFrame &multiframe);
~ValidFramesConsumer() = default;
~ValidFramesConsumer();
ValidFramesConsumer(const ValidFramesConsumer &other) = delete; // copy constructor
ValidFramesConsumer(ValidFramesConsumer &&other) noexcept = delete; // move constructor
ValidFramesConsumer &operator=(const ValidFramesConsumer &other) = delete; // copy assignment