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>`.
This commit is contained in:
parent
0f943b3357
commit
c69444ed76
@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
namespace dap {
|
namespace dap {
|
||||||
class ReaderWriter;
|
class ReaderWriter;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user