We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d09a1c4 commit 02599cfCopy full SHA for 02599cf
SQLite/Core/Statement.swift
@@ -271,7 +271,7 @@ extension Cursor : SequenceType {
271
272
public func generate() -> AnyGenerator<Binding?> {
273
var idx = 0
274
- return anyGenerator {
+ return AnyGenerator {
275
idx >= self.columnCount ? Optional<Binding?>.None : self[idx++]
276
}
277
SQLite/Typed/Query.swift
@@ -920,7 +920,7 @@ extension Connection {
920
}()
921
922
return AnySequence {
923
- anyGenerator { statement.next().map { Row(columnNames, $0) } }
+ AnyGenerator { statement.next().map { Row(columnNames, $0) } }
924
925
926
0 commit comments