[llvm] 44d65ef - Fix includes in llvm/Support/FileSystem/UniqueID.h after 23ed570af1cc165afea1b70a533a4a39d6656501

Duncan P. N. Exon Smith via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 28 15:40:30 PDT 2020


Author: Duncan P. N. Exon Smith
Date: 2020-10-28T18:39:39-04:00
New Revision: 44d65efd95b353eeb26440ad2ef9f3bd05f5a927

URL: https://github.com/llvm/llvm-project/commit/44d65efd95b353eeb26440ad2ef9f3bd05f5a927
DIFF: https://github.com/llvm/llvm-project/commit/44d65efd95b353eeb26440ad2ef9f3bd05f5a927.diff

LOG: Fix includes in llvm/Support/FileSystem/UniqueID.h after 23ed570af1cc165afea1b70a533a4a39d6656501

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.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Support/FileSystem/UniqueID.h b/llvm/include/llvm/Support/FileSystem/UniqueID.h
index 8c41ca288737..1b79d4aad8e0 100644
--- a/llvm/include/llvm/Support/FileSystem/UniqueID.h
+++ b/llvm/include/llvm/Support/FileSystem/UniqueID.h
@@ -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 {


        


More information about the llvm-commits mailing list