Skip to content

Commit c69444e

Browse files
authored
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>`.
1 parent 0f943b3 commit c69444e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

include/dap/network.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
#include <functional>
1919
#include <memory>
20+
#include <stdint.h>
2021

2122
namespace dap {
2223
class ReaderWriter;

0 commit comments

Comments
 (0)