Skip to content

Commit 3768d53

Browse files
authored
Merge pull request #1 from docpitz/master
Fix Xcode 12 issues
2 parents 70fb7af + b2e6bbf commit 3768d53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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

Sources/SQLiteObjc/include/SQLiteObjc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#if defined(SQLITE_SWIFT_STANDALONE)
2727
@import sqlite3;
2828
#else
29-
@import SQLite3;
29+
@import SQLCipher.sqlite3;
3030
#endif
3131

3232
NS_ASSUME_NONNULL_BEGIN

0 commit comments

Comments
 (0)