Skip to content

Commit 4eacdc2

Browse files
committed
Fix missing '#else' check
1 parent 5985c02 commit 4eacdc2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/SQLite.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3566,8 +3566,9 @@ public IEnumerable<T> ExecuteDeferredQuery<T> (TableMapping map)
35663566
else {
35673567
getSetter = FastColumnSetter.GetFastSetterMethodInfoUnsafe (map.MappedType);
35683568
}
3569-
#endif
3569+
#else
35703570
getSetter = FastColumnSetter.GetFastSetterMethodInfoUnsafe (map.MappedType);
3571+
#endif
35713572
}
35723573

35733574
for (int i = 0; i < cols.Length; i++) {

0 commit comments

Comments
 (0)