summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph GrĂ¼ninger <foss@grueninger.de>2024-08-08 18:26:35 (GMT)
committerBrad King <brad.king@kitware.com>2024-08-13 19:42:40 (GMT)
commitf742c298a0d6b70059e5c98c89d301e62a3e2087 (patch)
tree77b1a2a4673df4af6a3c5da9a8fa2aaaf5a3e3c0
parent931dd7d3a55fb43614e9cc349358b7c8b2f077cf (diff)
downloadCMake-f742c298a0d6b70059e5c98c89d301e62a3e2087.zip
CMake-f742c298a0d6b70059e5c98c89d301e62a3e2087.tar.gz
CMake-f742c298a0d6b70059e5c98c89d301e62a3e2087.tar.bz2
cppdap: include/dap/network.h: add <stdint.h> include for GCC 15
GCC 15 requires the include for the declaration of `uint32_t`. Backport [cppdap PR 133](https://github.com/google/cppdap/pull/133).
-rw-r--r--Utilities/cmcppdap/include/dap/network.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Utilities/cmcppdap/include/dap/network.h b/Utilities/cmcppdap/include/dap/network.h
index 9d14f6b..dd3e006 100644
--- a/Utilities/cmcppdap/include/dap/network.h
+++ b/Utilities/cmcppdap/include/dap/network.h
@@ -17,6 +17,7 @@
#include <functional>
#include <memory>
+#include <stdint.h>
namespace dap {
class ReaderWriter;