Skip to content

Commit b2b58e7

Browse files
committed
fixes fixes fixes
1 parent b8f97a7 commit b2b58e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/cthash/internal/hexdec.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ consteval auto get_hexdec_table() noexcept {
2424
}
2525
};
2626

27-
for (int i = 0; i != static_cast<int>(result.size()); ++i) {
28-
result[static_cast<size_t>(i)] = char_to_hexdec(static_cast<char>(i));
27+
for (size_t i = 0; i != result.size(); ++i) {
28+
result[i] = char_to_hexdec(static_cast<char>(i));
2929
}
3030

3131
return result;

0 commit comments

Comments
 (0)