Skip to content

Commit aaa9e16

Browse files
committed
Fix ANOTHER warning
1 parent ca01efa commit aaa9e16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/libhat/signature.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ LIBHAT_EXPORT namespace hat {
147147
return std::nullopt;
148148
}
149149
value += digit.value();
150-
mask += base - 1;
150+
mask += static_cast<uint8_t>(base - 1);
151151
}
152152
}
153153

0 commit comments

Comments
 (0)