Commit c69444e
authored
include/dap/network.h: add <stdint.h> include for
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>`.gcc-15 (#133)1 parent 0f943b3 commit c69444e
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| 20 | + | |
20 | 21 | | |
21 | 22 | | |
22 | 23 | | |
| |||
0 commit comments