This prepares an update to follow other hashes.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
LGTM, with a minor nit.
llvm/include/llvm/Support/MD5.h | ||
---|---|---|
89–103 | I suggest leaving the location in the file these in the file above. That'll remove the diff entirely on the typedef, and make much of the diff for the members whitespace-only. Unless there's a specific reason you were moving it? |
Move members back up to minimize the diff.
llvm/include/llvm/Support/MD5.h | ||
---|---|---|
89–103 | This was to follow SHA1 and SHA256, that also have it at the end. I don't care much. Let's minimize the diff. |
llvm/include/llvm/Support/MD5.h | ||
---|---|---|
89–103 | Actually. The next patch will need to add a MD5Result member, which needs to be declared after. |
llvm/include/llvm/Support/MD5.h | ||
---|---|---|
89–103 | Sure, SGTM. |
I suggest leaving the location in the file these in the file above. That'll remove the diff entirely on the typedef, and make much of the diff for the members whitespace-only. Unless there's a specific reason you were moving it?