Skip to content

Commit 018218e

Browse files
committed
Remove old feature enablement default
1 parent 8aa8d1d commit 018218e

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

Sources/SWBCore/SWBFeatureFlag.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,6 @@ public enum SWBFeatureFlag {
141141
/// Remove this feature flag after landing rdar://104894978 (Write "perform-ownership-analysis" = "yes" to build manifest by default)
142142
public static let performOwnershipAnalysis = SWBFeatureFlagProperty("PerformOwnershipAnalysis", defaultValue: false)
143143

144-
/// Enable clang explicit modules by default.
145-
public static let enableClangExplicitModulesByDefault = SWBFeatureFlagProperty("EnableClangExplicitModulesByDefault", defaultValue: false)
146-
147144
/// Enable Swift explicit modules by default.
148145
public static let enableSwiftExplicitModulesByDefault = SWBFeatureFlagProperty("EnableSwiftExplicitModulesByDefault", defaultValue: false)
149146

Sources/SWBCore/Settings/Settings.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -573,10 +573,6 @@ final class WorkspaceSettings: Sendable {
573573
table.push(BuiltinMacros.EXPERIMENTAL_ALLOW_INSTALL_HEADERS_FILTERING, literal: true)
574574
}
575575

576-
if SWBFeatureFlag.enableClangExplicitModulesByDefault.value {
577-
table.push(BuiltinMacros.CLANG_ENABLE_EXPLICIT_MODULES, literal: true)
578-
}
579-
580576
if SWBFeatureFlag.enableSwiftExplicitModulesByDefault.value {
581577
table.push(BuiltinMacros.SWIFT_ENABLE_EXPLICIT_MODULES, literal: .enabled)
582578
}

0 commit comments

Comments
 (0)