Matcher: Add virtual destructor

This commit is contained in:
Rebecca Turner
2024-03-10 12:56:07 -07:00
parent 70e93c1e2b
commit db9bab2708

View File

@@ -481,6 +481,7 @@ struct CmdProfileInstall : InstallablesCommand, MixDefaultProfile
struct Matcher
{
virtual ~Matcher() { }
virtual std::string getTitle() = 0;
virtual bool matches(const std::string & name, const ProfileElement & element) = 0;
};