Skip to content

Commit 6052c31

Browse files
committed
Fix import problem for standalone.
1 parent 960309e commit 6052c31

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

SQLite/Core/ConnectionPool.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@
2323
//
2424

2525
import Dispatch
26-
import CSQLite
26+
#if SQLITE_SWIFT_STANDALONE
27+
import sqlite3
28+
#else
29+
import CSQLite
30+
#endif
2731

2832

2933
private let vfsName = "unix-excl"

0 commit comments

Comments
 (0)