From eb7983041bc1a4f62663ce4f45a11088bbed87e5 Mon Sep 17 00:00:00 2001 From: cainbit Date: Tue, 10 Oct 2023 18:53:57 +0800 Subject: [PATCH] add missing header file cstdint for using uint64_t and uint8_t --- M17Utils.cpp | 1 + NullController.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/M17Utils.cpp b/M17Utils.cpp index 4462c9b2..1b217b72 100644 --- a/M17Utils.cpp +++ b/M17Utils.cpp @@ -19,6 +19,7 @@ #include "M17Utils.h" #include "M17Defines.h" +#include #include const std::string M17_CHARS = " ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-/."; diff --git a/NullController.cpp b/NullController.cpp index edfeffe0..eeb77175 100644 --- a/NullController.cpp +++ b/NullController.cpp @@ -19,6 +19,7 @@ #include "NullController.h" #include +#include #include const unsigned char MMDVM_FRAME_START = 0xE0U;