Mordante created this revision. Herald added a project: All. Mordante requested review of this revision. Herald added projects: clang, libc++. Herald added subscribers: libcxx-commits, cfe-commits. Herald added a reviewer: libc++.
This attempts to fix the issue introduced in 12cb1cb3720d <https://reviews.llvm.org/rG12cb1cb3720de8d164196010123ce1a8901d8122> Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D142690 Files: clang/lib/run_the_clang_CI libcxx/include/module.modulemap.in Index: libcxx/include/module.modulemap.in =================================================================== --- libcxx/include/module.modulemap.in +++ libcxx/include/module.modulemap.in @@ -1416,7 +1416,10 @@ module extent { private header "__type_traits/extent.h" } module has_unique_object_representation { private header "__type_traits/has_unique_object_representation.h" } module has_virtual_destructor { private header "__type_traits/has_virtual_destructor.h" } - module integral_constant { private header "__type_traits/integral_constant.h" } + module integral_constant { + private header "__type_traits/integral_constant.h" + export type_traits.common_reference + } module is_abstract { private header "__type_traits/is_abstract.h" } module is_aggregate { private header "__type_traits/is_aggregate.h" } module is_allocator { private header "__type_traits/is_allocator.h" }
Index: libcxx/include/module.modulemap.in =================================================================== --- libcxx/include/module.modulemap.in +++ libcxx/include/module.modulemap.in @@ -1416,7 +1416,10 @@ module extent { private header "__type_traits/extent.h" } module has_unique_object_representation { private header "__type_traits/has_unique_object_representation.h" } module has_virtual_destructor { private header "__type_traits/has_virtual_destructor.h" } - module integral_constant { private header "__type_traits/integral_constant.h" } + module integral_constant { + private header "__type_traits/integral_constant.h" + export type_traits.common_reference + } module is_abstract { private header "__type_traits/is_abstract.h" } module is_aggregate { private header "__type_traits/is_aggregate.h" } module is_allocator { private header "__type_traits/is_allocator.h" }
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits