Skip to content

Commit ef84dbe

Browse files
committed
[XPTI] Make unsigned id actually unsigned
1 parent c04478f commit ef84dbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xpti/include/xpti/xpti_data_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ template <> struct hash<xpti::uid_t> {
6969

7070
namespace xpti {
7171
constexpr int invalid_id = -1;
72-
constexpr int invalid_uid = 0;
72+
constexpr uint64_t invalid_uid = 0;
7373
constexpr uint8_t default_vendor = 0;
7474

7575
/// @brief Flag values used by the payload_t structure to mark the information

0 commit comments

Comments
 (0)