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 a99c63a commit 0ec5bbfCopy full SHA for 0ec5bbf
cpp/PreparedStatementHostObject.h
@@ -40,7 +40,6 @@ class PreparedStatementHostObject : public jsi::HostObject {
40
jsi::Value get(jsi::Runtime &rt, const jsi::PropNameID &propNameID) override;
41
42
private:
43
- std::shared_ptr<ThreadPool> _thread_pool;
44
#ifdef OP_SQLITE_USE_LIBSQL
45
DB _db;
46
libsql_stmt_t _stmt;
@@ -49,6 +48,7 @@ class PreparedStatementHostObject : public jsi::HostObject {
49
48
// This shouldn't be de-allocated until sqlite3_finalize is called on it
50
sqlite3_stmt *_stmt;
51
#endif
+ std::shared_ptr<ThreadPool> _thread_pool;
52
};
53
54
} // namespace opsqlite
0 commit comments