From 5bed56d2f543da9e5cb0174e60eed0225350a3be Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Sat, 25 May 2013 05:13:17 +0000 Subject: [PATCH] Add some comments to the stringify function. llvm-svn: 182710 --- llvm/include/llvm/Support/MD5.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm/include/llvm/Support/MD5.h b/llvm/include/llvm/Support/MD5.h index 9d306993f0e9..810d44892bc8 100644 --- a/llvm/include/llvm/Support/MD5.h +++ b/llvm/include/llvm/Support/MD5.h @@ -55,6 +55,8 @@ public: /// \brief Finishes off the hash and puts the result in result. void final(MD5Result &result); + /// \brief Translates the bytes in \p Res to a hex string that is + /// deposited into \p Str. The result will be of length 32. static void stringifyResult(MD5Result &Res, SmallString<32> &Str); private: