Skip to content

Commit 516819c

Browse files
committed
WIP: Work around compiler bug which is being filed upstream
1 parent d603ed6 commit 516819c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

libcxx/include/module.modulemap

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1603,7 +1603,10 @@ module std [system] {
16031603
module new {
16041604
header "new"
16051605
module align_val_t { header "__new/align_val_t.h" }
1606-
module allocate { header "__new/allocate.h" }
1606+
module allocate {
1607+
header "__new/allocate.h"
1608+
export * // TODO: Workaround for rdar://121551667
1609+
}
16071610
module destroying_delete_t { header "__new/destroying_delete_t.h" }
16081611
module exceptions { header "__new/exceptions.h" }
16091612
module global_new_delete { header "__new/global_new_delete.h" }

0 commit comments

Comments
 (0)