Add some comments to the stringify function.
authorEric Christopher <echristo@gmail.com>
Sat, 25 May 2013 05:13:17 +0000 (05:13 +0000)
committerEric Christopher <echristo@gmail.com>
Sat, 25 May 2013 05:13:17 +0000 (05:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182710 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/MD5.h

index 9d306993f0e94d2ad61a4d80483281b1ff49d555..810d44892bc864793e4d87aeeb941f3341907ac3 100644 (file)
@@ -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: