diff options
author | Sven Gothel <[email protected]> | 2022-01-12 05:48:58 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-01-12 05:48:58 +0100 |
commit | bfc463decc485cd597c0c3b51c01a1b7ac7a786d (patch) | |
tree | 1e71fb6972ac21bee9481a60d8616c4d922502cc /api | |
parent | f4118b41672c17b2f0845ea9a23c87cfaa04cf39 (diff) |
DBTConst: THREAD_SHUTDOWN_TIMEOUT_MS is jau::nsize_t
Diffstat (limited to 'api')
-rw-r--r-- | api/direct_bt/DBTConst.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/api/direct_bt/DBTConst.hpp b/api/direct_bt/DBTConst.hpp index de404066..646cc8b5 100644 --- a/api/direct_bt/DBTConst.hpp +++ b/api/direct_bt/DBTConst.hpp @@ -28,6 +28,8 @@ #include <cstddef> +#include <jau/int_types.hpp> + namespace direct_bt { /** @@ -35,7 +37,7 @@ namespace direct_bt { * * Usually used for socket reader threads, like used within HCIHandler. */ - static constexpr const size_t THREAD_SHUTDOWN_TIMEOUT_MS = 8000; + static constexpr const jau::nsize_t THREAD_SHUTDOWN_TIMEOUT_MS = 8000; } // namespace direct_bt |