diff options
author | jade <lix@jade.fyi> | 2024-08-08 23:09:30 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@localhost> | 2024-08-08 23:09:30 +0000 |
commit | 9682ab4f3859ca60b0b4525452b27297e31cb751 (patch) | |
tree | 140cf7817556db65c80693f8b89a76c722b6d726 /src/libstore/sqlite.cc | |
parent | 757041c3e74787c755b3de826078968119f706d6 (diff) | |
parent | a5f0954c290157875b4dfb79edcf651f55742dc2 (diff) |
Merge changes I6358a393,I2d9f276b,Idd096dc9 into main
* changes:
clang-tidy: write a lint for charptr_cast
tree-wide: automated migration to charptr_cast
clang-tidy: enforce the new rules
Diffstat (limited to 'src/libstore/sqlite.cc')
-rw-r--r-- | src/libstore/sqlite.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/sqlite.cc b/src/libstore/sqlite.cc index 3114aad48..8d0bfcb11 100644 --- a/src/libstore/sqlite.cc +++ b/src/libstore/sqlite.cc @@ -1,3 +1,4 @@ +#include "charptr-cast.hh" #include "sqlite.hh" #include "globals.hh" #include "logging.hh" @@ -201,7 +202,7 @@ bool SQLiteStmt::Use::next() std::optional<std::string> SQLiteStmt::Use::getStrNullable(int col) { - auto s = reinterpret_cast<const char *>(sqlite3_column_text(stmt, col)); + auto s = charptr_cast<const char *>(sqlite3_column_text(stmt, col)); return s != nullptr ? std::make_optional<std::string>((s)) : std::nullopt; } |