Commit 1d737cb8 authored by Don Gagne's avatar Don Gagne

Fixed unused variable warnings

parent 784b8709
......@@ -212,6 +212,7 @@ void LinkManager::_deleteLink(LinkInterface* link)
break;
}
}
Q_UNUSED(found);
Q_ASSERT(found);
_linkListMutex.unlock();
......
......@@ -204,6 +204,7 @@ void MAVLinkProtocol::_linkStatusChanged(LinkInterface* link, bool connected)
break;
}
}
Q_UNUSED(found);
Q_ASSERT(found);
if (_connectedLinks.count() == 0) {
......
Markdown is supported
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