NOISSUE make the compiler more evil

This commit is contained in:
Petr Mrázek
2015-10-11 19:56:31 +02:00
parent 44db72ead5
commit 457dd2e94e
11 changed files with 18 additions and 13 deletions

View File

@ -1,3 +1,5 @@
#pragma once
#include "IPathMatcher.h"
#include <SeparatorPrefixTree.h>
#include <QRegularExpression>
@ -10,7 +12,7 @@ public:
{
}
virtual bool matches(const QString &string) override
virtual bool matches(const QString &string) const override
{
return m_fsTree.covers(string);
}