[libc-commits] [libc] f72d41b - [libc] Add missing include in type_traits/remove_all_extents.h (#65626)

via libc-commits libc-commits at lists.llvm.org
Thu Sep 7 08:57:52 PDT 2023


Author: Guillaume Chatelet
Date: 2023-09-07T17:57:47+02:00
New Revision: f72d41b5b17d0b65c95745da60b88c6911fccfab

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

LOG: [libc] Add missing include in type_traits/remove_all_extents.h (#65626)

Added: 
    

Modified: 
    libc/src/__support/CPP/type_traits/remove_all_extents.h

Removed: 
    


################################################################################
diff  --git a/libc/src/__support/CPP/type_traits/remove_all_extents.h b/libc/src/__support/CPP/type_traits/remove_all_extents.h
index 7799032ad52556..54b36a4c2e5463 100644
--- a/libc/src/__support/CPP/type_traits/remove_all_extents.h
+++ b/libc/src/__support/CPP/type_traits/remove_all_extents.h
@@ -11,6 +11,8 @@
 #include "src/__support/CPP/type_traits/type_identity.h"
 #include "src/__support/macros/config.h"
 
+#include <stddef.h> // size_t
+
 namespace __llvm_libc::cpp {
 
 // remove_all_extents


        


More information about the libc-commits mailing list