ClangRefactoring: Fix compile with Qt5.6/gcc4.9

Change-Id: Ibea187c2216cc9f0a3c6ce53d5139b0a2c7c9065
Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
This commit is contained in:
Christian Stenger
2018-01-25 07:12:12 +01:00
parent 5afab6f018
commit 333d30dce5
3 changed files with 3 additions and 3 deletions

View File

@@ -75,7 +75,7 @@ public:
utf8Column);
}
Symbols symbolsContaining(SymbolType symbolType,
Symbols symbolsContaining(SymbolType /*symbolType*/,
Utils::SmallStringView/*regularExpression*/) const override
{
// TODO: implement

View File

@@ -44,7 +44,7 @@ QString SymbolsFindFilter::id() const
QString SymbolsFindFilter::displayName() const
{
return CppTools::Constants::SYMBOLS_FIND_FILTER_DISPLAY_NAME;
return QString(CppTools::Constants::SYMBOLS_FIND_FILTER_DISPLAY_NAME);
}
bool SymbolsFindFilter::isEnabled() const

View File

@@ -74,7 +74,7 @@ QString SymbolsFindFilter::id() const
QString SymbolsFindFilter::displayName() const
{
return Constants::SYMBOLS_FIND_FILTER_DISPLAY_NAME;
return QString(Constants::SYMBOLS_FIND_FILTER_DISPLAY_NAME);
}
bool SymbolsFindFilter::isEnabled() const