Skip to content

Commit 969ac10

Browse files
authored
[support][nfc] MD5: Undef macros after use (llvm#132132)
I'm experimenting with amalgamating Support lib into single cpp and leaking a bunch of 1-letter macros is not nice.
1 parent 30ff508 commit 969ac10

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

llvm/lib/Support/MD5.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -296,3 +296,11 @@ MD5::MD5Result MD5::hash(ArrayRef<uint8_t> Data) {
296296

297297
return Res;
298298
}
299+
300+
#undef F
301+
#undef G
302+
#undef H
303+
#undef I
304+
#undef STEP
305+
#undef SET
306+
#undef GET

0 commit comments

Comments
 (0)