Skip to content

Fix compiler warning #176

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/TSCBasic/ObjectIdentifierProtocol.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/// A protocol which implements Hashable protocol using ObjectIdentifier.
///
/// Classes can conform to this protocol to auto-conform to Hashable and Equatable.
public protocol ObjectIdentifierProtocol: class, Hashable {}
public protocol ObjectIdentifierProtocol: AnyObject, Hashable {}

extension ObjectIdentifierProtocol {
public func hash(into hasher: inout Hasher) {
Expand Down
2 changes: 1 addition & 1 deletion Sources/TSCUtility/JSONMessageStreamingParser.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Foundation
import TSCBasic

/// Protocol for the parser delegate to get notified of parsing events.
public protocol JSONMessageStreamingParserDelegate: class {
public protocol JSONMessageStreamingParserDelegate: AnyObject {

/// A decodable type representing the JSON messages being parsed.
associatedtype Message: Decodable
Expand Down
2 changes: 1 addition & 1 deletion Sources/TSCUtility/SimplePersistence.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import TSCBasic

/// A protocol which needs to be implemented by the objects which can be
/// persisted using SimplePersistence
public protocol SimplePersistanceProtocol: class, JSONSerializable {
public protocol SimplePersistanceProtocol: AnyObject, JSONSerializable {
/// Restores state from the given json object.
func restore(from json: JSON) throws

Expand Down