Skip to content

Commit 86af786

Browse files
committed
Always remove inferred types
Signed-off-by: Stephen Celis <stephen@stephencelis.com>
1 parent ba9a175 commit 86af786

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SQLite/Statement.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ extension Cursor: SequenceType {
300300

301301
public func generate() -> GeneratorOf<Binding?> {
302302
var idx = 0
303-
return GeneratorOf<Binding?> {
303+
return GeneratorOf {
304304
idx >= self.columnCount ? Optional<Binding?>.None : self[idx++]
305305
}
306306
}

0 commit comments

Comments
 (0)