chore: clean up after new compiler warnings

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers
2023-06-04 14:59:37 -07:00
parent 7e0e1ec51d
commit cc41b039e6
25 changed files with 74 additions and 78 deletions

View File

@ -8,6 +8,6 @@ public:
typedef std::shared_ptr<IPathMatcher> Ptr;
public:
virtual ~IPathMatcher(){};
virtual ~IPathMatcher() {}
virtual bool matches(const QString &string) const = 0;
};

View File

@ -4,7 +4,7 @@
class RegexpMatcher : public IPathMatcher
{
public:
virtual ~RegexpMatcher() {};
virtual ~RegexpMatcher() {}
RegexpMatcher(const QString &regexp)
{
m_regexp.setPattern(regexp);