[llvm] fa22594 - ItaniumManglingCanonicalizer.h - add cstdint.h include for missing uintptr_t def
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Fri May 8 06:22:47 PDT 2020
Author: Simon Pilgrim
Date: 2020-05-08T14:22:26+01:00
New Revision: fa22594c0f6e212b7f63e34283875b42f1c714f9
URL: https://github.com/llvm/llvm-project/commit/fa22594c0f6e212b7f63e34283875b42f1c714f9
DIFF: https://github.com/llvm/llvm-project/commit/fa22594c0f6e212b7f63e34283875b42f1c714f9.diff
LOG: ItaniumManglingCanonicalizer.h - add cstdint.h include for missing uintptr_t def
MSVC builds don't need it but everything else does.
Added:
Modified:
llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h b/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
index 8774b9e4dbb0..8e1b3d631983 100644
--- a/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
+++ b/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
@@ -15,6 +15,7 @@
#define LLVM_SUPPORT_ITANIUMMANGLINGCANONICALIZER_H
#include <cstddef>
+#include <cstdint>
namespace llvm {
More information about the llvm-commits
mailing list