We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b12256 commit 96f9e81Copy full SHA for 96f9e81
1 file changed
cpp/turso_bridge.cpp
@@ -5,9 +5,13 @@
5
#include "utils.hpp"
6
7
#ifdef __APPLE__
8
+extern "C" {
9
#include <turso_sdk_kit/turso.h>
10
+}
11
#else
12
13
#include "turso.h"
14
15
#endif
16
17
#include <filesystem>
@@ -125,8 +129,8 @@ void reset_statement(turso_statement_t *statement) {
125
129
126
130
} // namespace
127
131
128
-inline void opsqlite_bind_statement(sqlite3_stmt *statement,
- const std::vector<JSVariant> *values) {
132
+void opsqlite_bind_statement(sqlite3_stmt *statement,
133
+ const std::vector<JSVariant> *values) {
134
auto *stmt = to_turso_stmt(statement);
135
136
for (size_t i = 0; i < values->size(); i++) {
0 commit comments