Codechange: rename byte to uint8_t (#12308)
This commit is contained in:
4
src/3rdparty/md5/md5.h
vendored
4
src/3rdparty/md5/md5.h
vendored
@@ -57,8 +57,8 @@
|
||||
static const size_t MD5_HASH_BYTES = 16;
|
||||
|
||||
/** Container for storing a MD5 hash/checksum/digest. */
|
||||
struct MD5Hash : std::array<byte, MD5_HASH_BYTES> {
|
||||
MD5Hash() : std::array<byte, MD5_HASH_BYTES>{} {}
|
||||
struct MD5Hash : std::array<uint8_t, MD5_HASH_BYTES> {
|
||||
MD5Hash() : std::array<uint8_t, MD5_HASH_BYTES>{} {}
|
||||
|
||||
/**
|
||||
* Exclusively-or the given hash into this hash.
|
||||
|
Reference in New Issue
Block a user