From b982d8948e940d4a20f19b7f92b44adaa37ea6b5 Mon Sep 17 00:00:00 2001 From: Rick Sellens Date: Sat, 18 Jan 2020 10:43:35 -0500 Subject: [PATCH] more clang --- Adafruit_GPS.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Adafruit_GPS.cpp b/Adafruit_GPS.cpp index 12adfe5..ac7e496 100644 --- a/Adafruit_GPS.cpp +++ b/Adafruit_GPS.cpp @@ -205,10 +205,8 @@ boolean Adafruit_GPS::parse(char *nmea) { } } -#ifdef NMEA_EXTENSIONS //********************************************Sentences - //not required for basic GPS functionality - else if (!strcmp(thisSentence, - "TXT")) { //********************************************TXT +#ifdef NMEA_EXTENSIONS // Sentences not required for basic GPS functionality + else if (!strcmp(thisSentence,"TXT")) { //*******************************TXT if (!isEmpty(p)) txtTot = atoi(p); p = strchr(p, ',') + 1;