summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-05-31 22:34:52 +0000
committerEric Christopher <echristo@gmail.com>2013-05-31 22:34:52 +0000
commitcbb45aa123c42dabb38f14bc1879848d77896998 (patch)
tree9bc41bdc0448372f294f8edaf036daba57db221b /lib
parent92bd43bd4b2b358decc63462e98e856e9f9bfa90 (diff)
downloadllvm-cbb45aa123c42dabb38f14bc1879848d77896998.tar.gz
llvm-cbb45aa123c42dabb38f14bc1879848d77896998.tar.bz2
llvm-cbb45aa123c42dabb38f14bc1879848d77896998.tar.xz
Convert more unsigned char -> uint8_t.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183053 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Support/MD5.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/MD5.cpp b/lib/Support/MD5.cpp
index 4c72cef60b..8f180684ff 100644
--- a/lib/Support/MD5.cpp
+++ b/lib/Support/MD5.cpp
@@ -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;