Skip to content

Commit ef90b61

Browse files
committed
fix: signed to unsigned convertion warning
1 parent a010023 commit ef90b61

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/dynlibutils/module.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# define DYNLIB_COMPILE_TIME_EXPR constexpr
3636
#endif
3737

38-
#define INVALID_DYNLIB_BYTE (~0)
38+
constexpr uint8_t INVALID_DYNLIB_BYTE = 0xFFu;
3939

4040
namespace DynLibUtils {
4141

0 commit comments

Comments
 (0)