Skip to content

Commit 1004a0a

Browse files
Makes member functions public for Swift Module
1 parent 0217fed commit 1004a0a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Sources/Consolidate/Consolidatable.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88

99
import Foundation
1010

11-
protocol Consolidatable {
11+
public protocol Consolidatable {
1212

1313
var consolidationGroup: AnyHashable { get }
1414

1515
func consolidate(with other: Self) -> Self
1616

1717
}
1818

19-
extension Array where Element: Consolidatable {
19+
public extension Array where Element: Consolidatable {
2020

2121
func consolidated() -> Self {
2222

0 commit comments

Comments
 (0)