Skip to content

Commit

Permalink
Merge pull request #19 from spbriggs/compiler-fix
Browse files Browse the repository at this point in the history
Fix for compiler error with latest XCode
  • Loading branch information
macmade authored Nov 20, 2024
2 parents b54714e + 71c4b15 commit ddb1c0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion QEMU-Manager/Classes/Formatters/SizeFormatter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import Foundation

@objc( SizeFormatter ) public class SizeFormatter: NumberFormatter
@objc( SizeFormatter ) public class SizeFormatter: NumberFormatter, @unchecked Sendable
{
public enum Style
{
Expand Down
2 changes: 1 addition & 1 deletion QEMU-Manager/Classes/Helpers/Error.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import Foundation

public class Error: NSError
public class Error: NSError, @unchecked Sendable
{
public init( title: String, message: String, code: Int = -1 )
{
Expand Down

0 comments on commit ddb1c0b

Please sign in to comment.