File tree Expand file tree Collapse file tree
scripts/gha/integration_testing
testing/sample_framework/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -246,18 +246,19 @@ void LogEvent(const char* name) {
246246 return Future<void >(api, future_handle.get ());
247247 }
248248
249- [AppleTransactionVerifier verifyWithTransactionId: SafeString (transaction_id)
250- completion: ^(BOOL isFound) {
251- MutexLock lock (g_mutex);
252- if (!internal::IsInitialized ()) return ;
253-
254- auto * api = internal::FutureData::Get ()->api ();
255- if (isFound) {
256- api->Complete (future_handle, 0 , " " );
257- } else {
258- api->Complete (future_handle, -1 , " StoreKit 2 transaction not found." );
259- }
260- }];
249+ [AppleTransactionVerifier
250+ verifyWithTransactionId: SafeString (transaction_id)
251+ completion: ^(BOOL isFound) {
252+ MutexLock lock (g_mutex);
253+ if (!internal::IsInitialized ()) return ;
254+
255+ auto * api = internal::FutureData::Get ()->api ();
256+ if (isFound) {
257+ api->Complete (future_handle, 0 , " " );
258+ } else {
259+ api->Complete (future_handle, -1 , " StoreKit 2 transaction not found." );
260+ }
261+ }];
261262
262263 return Future<void >(api, future_handle.get ());
263264}
Original file line number Diff line number Diff line change @@ -163,9 +163,6 @@ def add_custom_framework(framework_path)
163163 local_framework_path = "Frameworks/#{ framework_name } "
164164 # Add the lib file as a reference
165165 libRef = @project [ 'Frameworks' ] . new_file ( framework_path )
166- if framework_name . end_with? ( '.xcframework' )
167- libRef . last_known_file_type = 'wrapper.xcframework'
168- end
169166 # Add it to the build phase
170167 @target . frameworks_build_phase . add_file_reference ( libRef )
171168 puts 'Finished adding framework.'
Original file line number Diff line number Diff line change 3333// crashing when they are missing from the system libraries on older OSs.
3434namespace std {
3535inline namespace __1 {
36- __attribute__ ((weak)) void __libcpp_verbose_abort (const char * format, ...) noexcept {
36+ __attribute__ ((weak)) void __libcpp_verbose_abort (const char * format,
37+ ...) noexcept {
3738 va_list list;
3839 va_start (list, format);
3940 vfprintf (stderr, format, list);
You can’t perform that action at this time.
0 commit comments