Default destructor in header

This commit is contained in:
jeremy 2022-11-29 16:12:50 +01:00
parent cc3bcf1dc2
commit f107ef8aea

View File

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