Merge branch 'master' into jgrpp
Remove 'byte' typedef
This commit is contained in:
4
src/3rdparty/md5/md5.h
vendored
4
src/3rdparty/md5/md5.h
vendored
@@ -59,8 +59,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