Skip to content

Commit 3396de2

Browse files
committed
stdlib: Enable MemberImportVisibility experimental feature.
It was already supposed to be enabled, but I forgot to update the CMake when I renamed the feature from ExtensionImportVisibility to MemberImportVisibility.
1 parent c06a9e5 commit 3396de2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

stdlib/cmake/modules/SwiftSource.cmake

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -629,10 +629,8 @@ function(_compile_swift_files
629629
list(APPEND swift_flags "-enable-experimental-feature" "SuppressedAssociatedTypes")
630630
list(APPEND swift_flags "-enable-experimental-feature" "SE427NoInferenceOnExtension")
631631
list(APPEND swift_flags "-enable-experimental-feature" "AllowUnsafeAttribute")
632-
633632
list(APPEND swift_flags "-enable-experimental-feature" "NonescapableTypes")
634-
635-
list(APPEND swift_flags "-enable-experimental-feature" "ExtensionImportVisiblity")
633+
list(APPEND swift_flags "-enable-experimental-feature" "MemberImportVisibility")
636634

637635
if (SWIFT_STDLIB_ENABLE_STRICT_CONCURRENCY_COMPLETE)
638636
list(APPEND swift_flags "-strict-concurrency=complete")

0 commit comments

Comments
 (0)