Skip to content
Snippets Groups Projects
Commit 3a6ead3d authored by Davide Mor's avatar Davide Mor
Browse files

[sx1278] Removed auto as it makes cppcheck fail

parent 29abac4b
Branches
Tags
No related merge requests found
Pipeline #6252 failed
...@@ -182,7 +182,7 @@ void flightTmLoop() ...@@ -182,7 +182,7 @@ void flightTmLoop()
Lock<FastMutex> l(mutex); Lock<FastMutex> l(mutex);
while (!pending_acks.isEmpty()) while (!pending_acks.isEmpty())
{ {
auto ack = pending_acks.pop(); PendingAck ack = pending_acks.pop();
// Prepare ack message // Prepare ack message
mavlink_message_t msg; mavlink_message_t msg;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment