[llvm] r182710 - Add some comments to the stringify function.
Eric Christopher
echristo at gmail.com
Fri May 24 22:13:17 PDT 2013
Author: echristo
Date: Sat May 25 00:13:17 2013
New Revision: 182710
URL: http://llvm.org/viewvc/llvm-project?rev=182710&view=rev
Log:
Add some comments to the stringify function.
Modified:
llvm/trunk/include/llvm/Support/MD5.h
Modified: llvm/trunk/include/llvm/Support/MD5.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/MD5.h?rev=182710&r1=182709&r2=182710&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/MD5.h (original)
+++ llvm/trunk/include/llvm/Support/MD5.h Sat May 25 00:13:17 2013
@@ -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:
More information about the llvm-commits
mailing list