From 4d9325c582bdc630dd91a57dfebe1a0693535f98 Mon Sep 17 00:00:00 2001 From: Randy Mackay Date: Wed, 29 Jul 2015 16:52:37 +0900 Subject: [PATCH] GPS: suppress compile warning --- libraries/AP_GPS/AP_GPS_NMEA.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/AP_GPS/AP_GPS_NMEA.cpp b/libraries/AP_GPS/AP_GPS_NMEA.cpp index 8bf6778a49..c563cd2e54 100644 --- a/libraries/AP_GPS/AP_GPS_NMEA.cpp +++ b/libraries/AP_GPS/AP_GPS_NMEA.cpp @@ -148,6 +148,7 @@ bool AP_GPS_NMEA::_decode(char c) switch (c) { case ',': // term terminators _parity ^= c; + /* no break */ case '\r': case '\n': case '*':