From 951e2de074bdc65f36cb096258543398e6ae9622 Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Mon, 12 Oct 2020 21:45:57 +0200 Subject: [PATCH] fix iterrator increment --- src/LoRa_APRS_iGate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index 67a5db0..e6518a1 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -214,7 +214,7 @@ void loop() } else { - iter++; // cppcheck-suppress postfixOperator + ++iter; } } }