Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
include/dap/network.h: add <stdint.h> include for
gcc-15
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>`.
- Loading branch information