Commit 39ddda71 authored by Alex Blasche's avatar Alex Blasche
Browse files

Fix unused parameter warning


qnearfieldtarget_neard_p.cpp:52:54: warning: unused parameter `isPersistent` [-Wunused-parameter]
bool QNearFieldTargetPrivate::setKeepConnection(bool isPersistent)

Change-Id: Ib16e986f88452bb043afb973113747f56379ffaf
Reviewed-by: default avatarTimur Pocheptsov <timur.pocheptsov@qt.io>
Showing with 1 addition and 0 deletions
......@@ -51,6 +51,7 @@ bool QNearFieldTargetPrivate::keepConnection() const
bool QNearFieldTargetPrivate::setKeepConnection(bool isPersistent)
{
Q_UNUSED(isPersistent);
return false;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment