Skip to content

Commit ca51589

Browse files
authored
Merge pull request #665 from swiftlang/eng/android-workaround
Work around the swiftinterface generation issue for Android too
2 parents 5f62e01 + 6caae62 commit ca51589

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/Testing/Issues/Issue+Recording.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ extension Issue {
239239
// MARK: - Debugging failures
240240

241241
/// A unique value used by ``failureBreakpoint()``.
242-
#if !os(Windows)
243-
// Work around compiler bug by not specifying unchecked exclusivity on Windows.
242+
#if !os(Windows) && !os(Android)
243+
// Work around compiler bug by not specifying unchecked exclusivity on Windows/Android.
244244
// SEE: https://github.com/swiftlang/swift/issues/76279
245245
@exclusivity(unchecked)
246246
#endif

0 commit comments

Comments
 (0)