Skip to content

Commit 41872b1

Browse files
committed
Fix for Xcode 9
1 parent 5e771a1 commit 41872b1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Sources/SQLite/Core/Connection.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import sqlite3
2929
#elseif SQLITE_SWIFT_SQLCIPHER
3030
import SQLCipher
3131
#elseif SWIFT_PACKAGE || COCOAPODS
32-
import CSQLite
32+
import SQLite3
3333
#endif
3434

3535
/// A connection to SQLite.

Sources/SQLite/Core/Statement.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import sqlite3
2727
#elseif SQLITE_SWIFT_SQLCIPHER
2828
import SQLCipher
2929
#elseif SWIFT_PACKAGE || COCOAPODS
30-
import CSQLite
30+
import SQLite3
3131
#endif
3232

3333
/// A single SQL statement.

Sources/SQLite/Helpers.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import sqlite3
2727
#elseif SQLITE_SWIFT_SQLCIPHER
2828
import SQLCipher
2929
#elseif SWIFT_PACKAGE || COCOAPODS
30-
import CSQLite
30+
import SQLite3
3131
#endif
3232

3333
public typealias Star = (Expression<Binding>?, Expression<Binding>?) -> Expression<Void>

Tests/SQLiteTests/ConnectionTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import sqlite3
66
#elseif SQLITE_SWIFT_SQLCIPHER
77
import SQLCipher
88
#elseif SWIFT_PACKAGE || COCOAPODS
9-
import CSQLite
9+
import SQLite3
1010
#endif
1111

1212
class ConnectionTests : SQLiteTestCase {

0 commit comments

Comments
 (0)