From accea0fee3b35003cf15920c1f2441f1f3c5b7ac Mon Sep 17 00:00:00 2001 From: Stuart Montgomery Date: Wed, 12 Mar 2025 12:02:16 -0500 Subject: [PATCH] Enable 'MemberImportVisibility' upcoming feature in CMake rules --- cmake/modules/shared/CompilerSettings.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmake/modules/shared/CompilerSettings.cmake b/cmake/modules/shared/CompilerSettings.cmake index eb9da4162..f526caae3 100644 --- a/cmake/modules/shared/CompilerSettings.cmake +++ b/cmake/modules/shared/CompilerSettings.cmake @@ -17,7 +17,8 @@ add_compile_options( "SHELL:$<$:-Xfrontend -enable-experimental-feature -Xfrontend SuppressedAssociatedTypes>") add_compile_options( "SHELL:$<$:-Xfrontend -enable-upcoming-feature -Xfrontend ExistentialAny>" - "SHELL:$<$:-Xfrontend -enable-upcoming-feature -Xfrontend InternalImportsByDefault>") + "SHELL:$<$:-Xfrontend -enable-upcoming-feature -Xfrontend InternalImportsByDefault>" + "SHELL:$<$:-Xfrontend -enable-upcoming-feature -Xfrontend MemberImportVisibility>") # Platform-specific definitions. if(APPLE)