Skip to content

Commit eea0667

Browse files
authored
Merge pull request swiftlang#236 from bcardosolopes/master
libdispatch: Avoid submodules for headers that should not be included
2 parents a69853f + 8de6d9f commit eea0667

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

dispatch/darwin/module.modulemap

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
module Dispatch [system] [extern_c] {
22
umbrella header "dispatch.h"
3-
module * { export * }
43
export *
54
}
65

dispatch/generic/module.modulemap

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ module DispatchIntrospection [system] [extern_c] {
1111

1212
module CDispatch [system] [extern_c] {
1313
umbrella header "dispatch.h"
14-
module * { export * }
1514
export *
1615
requires blocks
1716
link "dispatch"

private/darwin/module.modulemap

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module DispatchPrivate [system] [extern_c] {
22
umbrella header "private.h"
33
exclude header "mach_private.h"
4-
module * { export * }
54
export *
65
}
76

private/generic/module.modulemap

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module DispatchPrivate [system] [extern_c] {
22
umbrella header "private.h"
33
exclude header "mach_private.h"
4-
module * { export * }
54
export *
65
}
76

0 commit comments

Comments
 (0)