fix(types): int8_t -> uint8_t; -1 -> 255
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
namespace hex
|
||||
{
|
||||
extern const char digits[17];
|
||||
extern const int8_t map[256];
|
||||
extern const uint8_t map[256];
|
||||
|
||||
bool isValid(const char *str, size_t str_size) noexcept;
|
||||
bool isValid(std::string_view str) noexcept;
|
||||
|
||||
Reference in New Issue
Block a user