Author: Sirraide Date: 2025-12-16T17:54:27+01:00 New Revision: eb3298feda3cb3c5079172f5e7df56269e1a909b
URL: https://github.com/llvm/llvm-project/commit/eb3298feda3cb3c5079172f5e7df56269e1a909b DIFF: https://github.com/llvm/llvm-project/commit/eb3298feda3cb3c5079172f5e7df56269e1a909b.diff LOG: [Clang] [Headers] Actually install the stddefer.h header (#172512) I forgot to add the `stddefer.h` header to this list, which causes it to not be found at the moment: (see https://godbolt.org/z/arc18rhrK). Added: Modified: clang/lib/Headers/CMakeLists.txt Removed: ################################################################################ diff --git a/clang/lib/Headers/CMakeLists.txt b/clang/lib/Headers/CMakeLists.txt index 038859a513eb8..1b96ac417bf70 100644 --- a/clang/lib/Headers/CMakeLists.txt +++ b/clang/lib/Headers/CMakeLists.txt @@ -24,6 +24,7 @@ set(core_files stdcountof.h stdckdint.h stddef.h + stddefer.h __stddef_header_macro.h __stddef_max_align_t.h __stddef_null.h _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
