Skip to content

Commit

Permalink
pop_front --> pop
Browse files Browse the repository at this point in the history
  • Loading branch information
bertmelis authored Jul 31, 2024
1 parent 55d78f3 commit 63aad99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ModbusClientTCPasync.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void ModbusClientTCPasync::clearQueue()
// Delete all elements from queues
while (!queue.empty()) {
delete queue.front();
queue.pop_front();
queue.pop();
}
}

Expand Down

0 comments on commit 63aad99

Please sign in to comment.