Skip to content

Commit 507ec1a

Browse files
committed
Temporarily work around an "including non-modular header" error.
1 parent 5efb805 commit 507ec1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/SQLiteObjc/include/SQLite-Bridging.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424

2525
@import Foundation;
2626

27-
#import "sqlite3.h"
27+
struct sqlite3;
2828

2929
NS_ASSUME_NONNULL_BEGIN
3030
typedef NSString * _Nullable (^_SQLiteTokenizerNextCallback)(const char *input, int *inputOffset, int *inputLength);
31-
int _SQLiteRegisterTokenizer(sqlite3 *db, const char *module, const char *tokenizer, _Nullable _SQLiteTokenizerNextCallback callback);
31+
int _SQLiteRegisterTokenizer(struct sqlite3 *db, const char *module, const char *tokenizer, _Nullable _SQLiteTokenizerNextCallback callback);
3232
NS_ASSUME_NONNULL_END
3333

0 commit comments

Comments
 (0)