Skip to content

Commit c13ff32

Browse files
committed
Make cursor extension methods public
1 parent 979586f commit c13ff32

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Demos/PowerSyncExample/PowerSyncExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Sources/PowerSync/Protocol/db/SqlCursor.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public protocol SqlCursor {
6464
var columnNames: [String: Int] { get }
6565
}
6666

67-
extension SqlCursor {
67+
public extension SqlCursor {
6868
private func withResolvedIndex<T>(name: String, read: (_ index: Int) throws(SqlCursorError) -> T) throws(SqlCursorError) -> T {
6969
if let index = self.columnNames[name] {
7070
do {

0 commit comments

Comments
 (0)