Jelajahi Sumber

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).
Christoph Grüninger 1 tahun lalu
induk
melakukan
f742c298a0
1 mengubah file dengan 1 tambahan dan 0 penghapusan
  1. 1 0
      Utilities/cmcppdap/include/dap/network.h

+ 1 - 0
Utilities/cmcppdap/include/dap/network.h

@@ -17,6 +17,7 @@
 
 #include <functional>
 #include <memory>
+#include <stdint.h>
 
 namespace dap {
 class ReaderWriter;