Skip to content

Commit 1c71476

Browse files
committed
Make original and replacement members of PathMapping public
1 parent 5fb240e commit 1c71476

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/IndexStoreDB/IndexStoreDB.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ import Darwin.POSIX
2727

2828
public struct PathMapping: Equatable {
2929
/// Path prefix to be replaced, typically the canonical or hermetic path.
30-
let original: String
30+
public let original: String
3131

3232
/// Replacement path prefix, typically the path on the local machine.
33-
let replacement: String
33+
public let replacement: String
3434

3535
public init(original: String, replacement: String) {
3636
self.original = original

0 commit comments

Comments
 (0)