Skip to content

Commit 139ea1b

Browse files
committed
wip
1 parent 8c9509a commit 139ea1b

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- debug
2222
- release
2323
xcode:
24-
- '16.0'
24+
- '16.2'
2525
name: macOS 15
2626
runs-on: macos-15
2727
steps:
@@ -55,7 +55,7 @@ jobs:
5555
steps:
5656
- uses: actions/checkout@v4
5757
- name: Select Xcode
58-
run: sudo xcode-select -s /Applications/Xcode_16.0.app
58+
run: sudo xcode-select -s /Applications/Xcode_16.2.app
5959
- name: Run tests
6060
run: make build-for-library-evolution
6161

@@ -66,7 +66,7 @@ jobs:
6666
- Debug
6767
- Release
6868
xcode:
69-
- '16.0'
69+
- '16.2'
7070
name: Examples
7171
runs-on: macos-15
7272
steps:

Sources/IssueReporting/ErrorReporting.swift

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,13 @@ public func withErrorReporting<R>(
9797
return try await body()
9898
} catch {
9999
reportIssue(
100-
error, message(), fileID: fileID, filePath: filePath, line: line, column: column)
100+
error,
101+
message(),
102+
fileID: fileID,
103+
filePath: filePath,
104+
line: line,
105+
column: column
106+
)
101107
return nil
102108
}
103109
}
@@ -135,7 +141,13 @@ public func withErrorReporting<R>(
135141
return try await body()
136142
} catch {
137143
reportIssue(
138-
error, message(), fileID: fileID, filePath: filePath, line: line, column: column)
144+
error,
145+
message(),
146+
fileID: fileID,
147+
filePath: filePath,
148+
line: line,
149+
column: column
150+
)
139151
return nil
140152
}
141153
}

0 commit comments

Comments
 (0)