mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 16:24:23 +00:00
Convert more unsigned char -> uint8_t.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183053 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -183,7 +183,7 @@ MD5::MD5()
|
||||
: a(0x67452301), b(0xefcdab89), c(0x98badcfe), d(0x10325476), hi(0), lo(0) {
|
||||
}
|
||||
|
||||
/// Incrementally add the bytes in Data to the hash.
|
||||
/// Incrementally add the bytes in \p Data to the hash.
|
||||
void MD5::update(ArrayRef<uint8_t> Data) {
|
||||
MD5_u32plus saved_lo;
|
||||
unsigned long used, free;
|
||||
|
Reference in New Issue
Block a user