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:
Sergei Trofimovich 2024-08-02 16:38:40 +01:00 committed by GitHub
parent 0f943b3357
commit c69444ed76
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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