Skip to content

Commit

Permalink
Merge pull request #5 from transferwise/xcode-16
Browse files Browse the repository at this point in the history
Xcode 16 support
  • Loading branch information
jwelton authored Jun 11, 2024
2 parents e1019ac + e528be2 commit 629e47d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#include <stdlib.h>
#include <string.h>
#include <typeinfo>

#include <stdexcept>

#define STACKTRACE_BUFFER_LENGTH 30
#define DESCRIPTION_BUFFER_LENGTH 1000
Expand All @@ -50,7 +50,6 @@
#define likely_if(x) if(__builtin_expect(x,1))
#define unlikely_if(x) if(__builtin_expect(x,0))


// ============================================================================
#pragma mark - Globals -
// ============================================================================
Expand Down
4 changes: 2 additions & 2 deletions RollbarNotifier/Sources/RollbarReport/Report/Timestamp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ struct Timestamp: RawRepresentable {

extension Timestamp: Equatable, Comparable, Hashable, Codable {}

private final class ISO8601Formatter: DateFormatter {
private final class ISO8601Formatter: DateFormatter, @unchecked Sendable {

required init?(coder: NSCoder) {
super.init(coder: coder)
Expand All @@ -52,7 +52,7 @@ private final class ISO8601Formatter: DateFormatter {
}
}

private final class RFC3339Formatter: DateFormatter {
private final class RFC3339Formatter: DateFormatter, @unchecked Sendable {

required init?(coder: NSCoder) {
super.init(coder: coder)
Expand Down

0 comments on commit 629e47d

Please sign in to comment.