Skip to content

Commit fe40a23

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 91d8abb commit fe40a23

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
@@ -633,10 +633,8 @@ function(_compile_swift_files
633633
list(APPEND swift_flags "-enable-experimental-feature" "SuppressedAssociatedTypes")
634634
list(APPEND swift_flags "-enable-experimental-feature" "SE427NoInferenceOnExtension")
635635
list(APPEND swift_flags "-enable-experimental-feature" "AllowUnsafeAttribute")
636-
637636
list(APPEND swift_flags "-enable-experimental-feature" "NonescapableTypes")
638-
639-
list(APPEND swift_flags "-enable-experimental-feature" "ExtensionImportVisiblity")
637+
list(APPEND swift_flags "-enable-experimental-feature" "MemberImportVisibility")
640638

641639
if (SWIFT_STDLIB_ENABLE_STRICT_CONCURRENCY_COMPLETE)
642640
list(APPEND swift_flags "-strict-concurrency=complete")

0 commit comments

Comments
 (0)