Skip to content

Commit 334f45f

Browse files
committed
Merge bitcoin/bitcoin#28040: wallet: sqlite: don't include sqlite files from our headers
bea9fc2 wallet: sqlite: force sqlite3.h to be included by the cpp files (Cory Fields) Pull request description: Only `#include` upstream sqlite headers from our cpp files. Like #28039 but simpler :) ACKs for top commit: achow101: ACK bea9fc2 TheCharlatan: Nice, ACK bea9fc2 kristapsk: utACK bea9fc2 hebasto: ACK bea9fc2, I have reviewed the code and it looks OK. Tree-SHA512: cb83ac51eed7e0740f1c75ee87c7849fa7e535bc4836c499290041eb995ccfd82533e3babfe83a164257b62b180f206112d6a1bae7ea290ad0ec7f55d62432da
2 parents 75135c6 + bea9fc2 commit 334f45f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/wallet/sqlite.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
#include <sync.h>
99
#include <wallet/db.h>
1010

11-
#include <sqlite3.h>
12-
1311
struct bilingual_str;
1412

13+
struct sqlite3_stmt;
14+
struct sqlite3;
15+
1516
namespace wallet {
1617
class SQLiteDatabase;
1718

0 commit comments

Comments
 (0)