From 7b4c52e1e32803a6a9c6c19cfa3becf4f2dc623c Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Wed, 3 Nov 2021 15:45:42 +0100 Subject: NOISSUE fix some small build issues --- launcher/pathmatcher/FSTreeMatcher.h | 2 +- launcher/pathmatcher/IPathMatcher.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'launcher/pathmatcher') diff --git a/launcher/pathmatcher/FSTreeMatcher.h b/launcher/pathmatcher/FSTreeMatcher.h index 361924af..b84af294 100644 --- a/launcher/pathmatcher/FSTreeMatcher.h +++ b/launcher/pathmatcher/FSTreeMatcher.h @@ -12,7 +12,7 @@ public: { } - virtual bool matches(const QString &string) const override + bool matches(const QString &string) const override { return m_fsTree.covers(string); } diff --git a/launcher/pathmatcher/IPathMatcher.h b/launcher/pathmatcher/IPathMatcher.h index b60621c9..192782d7 100644 --- a/launcher/pathmatcher/IPathMatcher.h +++ b/launcher/pathmatcher/IPathMatcher.h @@ -1,5 +1,6 @@ #pragma once #include +#include class IPathMatcher { -- cgit