Fix includes in llvm/Support/FileSystem/UniqueID.h after 23ed570af1cc165afea1b70a533a...
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>
Wed, 28 Oct 2020 22:39:14 +0000 (18:39 -0400)
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>
Wed, 28 Oct 2020 22:39:39 +0000 (18:39 -0400)
Not sure why this worked for me, but some of the bots pointed out I
copied the wrong includes from FileSystem.h in
23ed570af1cc165afea1b70a533a4a39d6656501. Fixed.

llvm/include/llvm/Support/FileSystem/UniqueID.h

index 8c41ca2..1b79d4a 100644 (file)
@@ -14,7 +14,8 @@
 #ifndef LLVM_SUPPORT_FILESYSTEM_UNIQUEID_H
 #define LLVM_SUPPORT_FILESYSTEM_UNIQUEID_H
 
-#include <cstddef>
+#include <cstdint>
+#include <tuple>
 
 namespace llvm {
 namespace sys {