diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-21 17:59:41 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-21 17:59:41 +0100 |
commit | f036fb38fb75c1298f6729ffc2f7d411b5478854 (patch) | |
tree | 12a6345905cceb9f50e189cdf7d2993edd0f14de /libsqlitepp/sqlite-modifycommand.cpp | |
parent | Pass cppcheck and clang-tidy (diff) | |
download | libdbpp-sqlite-f036fb38fb75c1298f6729ffc2f7d411b5478854.tar.bz2 libdbpp-sqlite-f036fb38fb75c1298f6729ffc2f7d411b5478854.tar.xz libdbpp-sqlite-f036fb38fb75c1298f6729ffc2f7d411b5478854.zip |
First commit passing IWYU
Diffstat (limited to 'libsqlitepp/sqlite-modifycommand.cpp')
-rw-r--r-- | libsqlitepp/sqlite-modifycommand.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libsqlitepp/sqlite-modifycommand.cpp b/libsqlitepp/sqlite-modifycommand.cpp index d69516d..ee7a665 100644 --- a/libsqlitepp/sqlite-modifycommand.cpp +++ b/libsqlitepp/sqlite-modifycommand.cpp @@ -1,7 +1,10 @@ #include "sqlite-modifycommand.h" +#include "command.h" +#include "modifycommand.h" +#include "sqlite-command.h" #include "sqlite-connection.h" #include "sqlite-error.h" -#include <cstdlib> +#include <sqlite3.h> SQLite::ModifyCommand::ModifyCommand(const Connection * conn, const std::string & sql) : DB::Command(sql), DB::ModifyCommand(sql), SQLite::Command(conn, sql) |