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).
This commit is contained in:
Christoph Grüninger 2024-08-08 20:26:35 +02:00 committed by Brad King
parent 931dd7d3a5
commit f742c298a0

View File

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