Skip to content

Commit b8a8673

Browse files
authored
Corrected Ambiguous use of 'SQLITE_DETERMINISTIC' stephencelis#986
1 parent 70fb7af commit b8a8673

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SQLite/Core/Connection.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ public final class Connection {
587587
var flags = SQLITE_UTF8
588588
#if !os(Linux)
589589
if deterministic {
590-
flags |= SQLITE_DETERMINISTIC
590+
flags |= SQLite.SQLITE_DETERMINISTIC
591591
}
592592
#endif
593593
sqlite3_create_function_v2(handle, function, Int32(argc), flags, unsafeBitCast(box, to: UnsafeMutableRawPointer.self), { context, argc, value in

0 commit comments

Comments
 (0)