Skip to content

Commit

Permalink
Suppress performance-unnecessary-value-param
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Jul 18, 2024
1 parent 2b779f2 commit af4f008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/shared/utils/downloadqueue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ DownloadQueue::~DownloadQueue()
}
}

bool DownloadQueue::add(QUrl url)
bool DownloadQueue::add(QUrl url) // NOLINT performance-unnecessary-value-param
{
#ifdef Q_OS_WASM
emscripten::val location = emscripten::val::global("location");
Expand Down

0 comments on commit af4f008

Please sign in to comment.