From f5b67909745c44590048594727865b3e9b055014 Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Fri, 12 Apr 2024 11:27:26 -0500 Subject: [PATCH] Undo Ben's Copypasta Derp --- src/TinyGPS++.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/TinyGPS++.cpp b/src/TinyGPS++.cpp index 5224301..789a830 100644 --- a/src/TinyGPS++.cpp +++ b/src/TinyGPS++.cpp @@ -630,13 +630,6 @@ void TinyGPSInteger::commit(uint32_t timestamp) flags |= (FLAG_VALID|FLAG_UPDATED); } -void TinyGPSInteger::commit(uint32_t timestamp) -{ - createTime = timestamp; - val = newval; - flags |= (FLAG_VALID|FLAG_UPDATED); -} - void TinyGPSInteger::set(const char *term) { newval = atol(term);