From c69444ed76f7468b232ac4f989cb8f2bdc100185 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich <slyich@gmail.com> Date: Fri, 2 Aug 2024 16:38:40 +0100 Subject: [PATCH] include/dap/network.h: add <stdint.h> include for `gcc-15` (#133) On `gcc-15` without the include header can't be used as is. I noticed `cmake` build failing as: dap/network.h:31:39: error: 'uint32_t' has not been declared 31 | uint32_t timeoutMillis = 0); | ^~~~~~~~ The change adds `uint32_t` declaration via `<stdint.h>`. --- include/dap/network.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/dap/network.h b/include/dap/network.h index 3832873..03b9409 100644 --- a/include/dap/network.h +++ b/include/dap/network.h @@ -17,6 +17,7 @@ #include <functional> #include <memory> +#include <stdint.h> namespace dap { class ReaderWriter;