diff --git a/playground/ios/Podfile b/playground/ios/Podfile index 92e3eed1b0..57d344ef9d 100644 --- a/playground/ios/Podfile +++ b/playground/ios/Podfile @@ -67,6 +67,14 @@ def __apply_Xcode_15_3_flipper_post_install_workaround(installer) end end +def __apply_Xcode_15_unary_binary_error_workaround(installer) + installer.pods_project.targets.each do |target| + target.build_configurations.each do |config| + config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', '_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION'] + end + end +end + target 'playground' do all_pods end