[llvm] 564b756 - [ADT/Support] Add includes to fix module build

Jonas Hahnfeld via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 02:15:11 PDT 2025


Author: Jonas Hahnfeld
Date: 2025-03-10T10:14:31+01:00
New Revision: 564b75621d4a2e30a1769cc719a3a2b2029b8656

URL: https://github.com/llvm/llvm-project/commit/564b75621d4a2e30a1769cc719a3a2b2029b8656
DIFF: https://github.com/llvm/llvm-project/commit/564b75621d4a2e30a1769cc719a3a2b2029b8656.diff

LOG: [ADT/Support] Add includes to fix module build

Current Clang complains that 'size_t' / 'reference_wrapper' "must be
declared before it is used."

Added: 
    

Modified: 
    llvm/include/llvm/ADT/bit.h
    llvm/include/llvm/Support/ErrorOr.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ADT/bit.h b/llvm/include/llvm/ADT/bit.h
index c42b5e686bdc9..915a7de50aaff 100644
--- a/llvm/include/llvm/ADT/bit.h
+++ b/llvm/include/llvm/ADT/bit.h
@@ -15,6 +15,7 @@
 #define LLVM_ADT_BIT_H
 
 #include "llvm/Support/Compiler.h"
+#include <cstddef> // for std::size_t
 #include <cstdint>
 #include <limits>
 #include <type_traits>

diff  --git a/llvm/include/llvm/Support/ErrorOr.h b/llvm/include/llvm/Support/ErrorOr.h
index d195cbb04ec7d..1daac9a436c91 100644
--- a/llvm/include/llvm/Support/ErrorOr.h
+++ b/llvm/include/llvm/Support/ErrorOr.h
@@ -16,6 +16,7 @@
 #define LLVM_SUPPORT_ERROROR_H
 
 #include <cassert>
+#include <functional> // for std::reference_wrapper
 #include <system_error>
 #include <type_traits>
 #include <utility>


        


More information about the llvm-commits mailing list