MessagePredicate: Add virtual destructor

This commit is contained in:
Rasmus Karlsson 2021-11-28 12:39:32 +01:00 committed by pajlada
parent 2075e88990
commit 3fcb6346f5

View file

@ -17,6 +17,8 @@ namespace chatterino {
class MessagePredicate class MessagePredicate
{ {
public: public:
virtual ~MessagePredicate() = default;
/** /**
* @brief Checks whether this predicate applies to the passed message. * @brief Checks whether this predicate applies to the passed message.
* *