From 6caae62a658e47317aba1a8f86543ffdde2c7591 Mon Sep 17 00:00:00 2001 From: Alex Lorenz Date: Thu, 5 Sep 2024 14:37:55 -0700 Subject: [PATCH] Work around the swiftinterface generation issue for Android too This is a follow-up to 5f62e0112a0279c6d9ac9e61de1639860dd6e9f8, as the same issue also hits the Android build --- Sources/Testing/Issues/Issue+Recording.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Testing/Issues/Issue+Recording.swift b/Sources/Testing/Issues/Issue+Recording.swift index fc7129cd9..4578373a7 100644 --- a/Sources/Testing/Issues/Issue+Recording.swift +++ b/Sources/Testing/Issues/Issue+Recording.swift @@ -239,8 +239,8 @@ extension Issue { // MARK: - Debugging failures /// A unique value used by ``failureBreakpoint()``. -#if !os(Windows) -// Work around compiler bug by not specifying unchecked exclusivity on Windows. +#if !os(Windows) && !os(Android) +// Work around compiler bug by not specifying unchecked exclusivity on Windows/Android. // SEE: https://github.com/swiftlang/swift/issues/76279 @exclusivity(unchecked) #endif