diff options
author | George Hazan <ghazan@miranda.im> | 2022-12-02 16:36:46 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-12-02 16:36:46 +0300 |
commit | cf6686206e050f0e010f76e5ff33b1d8c1e20c5b (patch) | |
tree | 0afddce70bf7242cf7da83a7d441863fffaf1624 /protocols/Telegram/tdlib/td/tddb/td/db/SqliteDb.h | |
parent | c2772af03124c14e0820671789e7b9a4897ac53c (diff) |
Telegram: the first version that could be compiled
Diffstat (limited to 'protocols/Telegram/tdlib/td/tddb/td/db/SqliteDb.h')
-rw-r--r-- | protocols/Telegram/tdlib/td/tddb/td/db/SqliteDb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Telegram/tdlib/td/tddb/td/db/SqliteDb.h b/protocols/Telegram/tdlib/td/tddb/td/db/SqliteDb.h index 899b02e4a5..da4d3c6dfc 100644 --- a/protocols/Telegram/tdlib/td/tddb/td/db/SqliteDb.h +++ b/protocols/Telegram/tdlib/td/tddb/td/db/SqliteDb.h @@ -17,7 +17,7 @@ #include <memory> -struct tdsqlite3; +struct sqlite3; namespace td { @@ -63,7 +63,7 @@ class SqliteDb { static Result<SqliteDb> change_key(CSlice path, bool allow_creation, const DbKey &new_db_key, const DbKey &old_db_key); - tdsqlite3 *get_native() const { + sqlite3 *get_native() const { return raw_->db(); } |