Fix compilation of mocked configuration

This commit is contained in:
Martchus 2020-10-07 21:40:47 +02:00
parent aac87621dc
commit c9a56da42c
1 changed files with 2 additions and 2 deletions

View File

@ -137,8 +137,8 @@ int MockedReply::s_eventIndex = 0;
MockedReply *MockedReply::forRequest(const QString &method, const QString &path, const QUrlQuery &query, bool rest)
{
VAR_UNUSED(query)
VAR_UNUSED(rest)
CPP_UTILITIES_UNUSED(query)
CPP_UTILITIES_UNUSED(rest)
// set "mock URL"
QUrl url((rest ? QStringLiteral("mock://rest/") : QStringLiteral("mock://")) + path);