From d2542a6362d5e7304f793cc96986d6518293b802 Mon Sep 17 00:00:00 2001 From: bert hubert Date: Sun, 24 Mar 2024 20:21:45 +0100 Subject: [PATCH] add missing include that cause compilation problems on some platforms --- ubx.hh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ubx.hh b/ubx.hh index 0474fa3..5cd0ffe 100644 --- a/ubx.hh +++ b/ubx.hh @@ -1,6 +1,8 @@ #pragma once #include #include +#include + uint16_t calcUbxChecksum(uint8_t ubxClass, uint8_t ubxType, std::basic_string_view str); std::basic_string buildUbxMessage(uint8_t ubxClass, uint8_t ubxType, std::basic_string_view str);