diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-11-18 16:55:18 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-11-18 16:55:18 +0000 |
commit | 3bfa3dafe335479aade55507719071f7dceb0d8c (patch) | |
tree | 31d14618fc170a16f91f1f5c79e2ffd25f11b541 /libpqpp/pq-modifycommand.h | |
parent | Fixes for tidy (diff) | |
download | libdbpp-postgresql-3bfa3dafe335479aade55507719071f7dceb0d8c.tar.bz2 libdbpp-postgresql-3bfa3dafe335479aade55507719071f7dceb0d8c.tar.xz libdbpp-postgresql-3bfa3dafe335479aade55507719071f7dceb0d8c.zip |
Clang format
Diffstat (limited to 'libpqpp/pq-modifycommand.h')
-rw-r--r-- | libpqpp/pq-modifycommand.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/libpqpp/pq-modifycommand.h b/libpqpp/pq-modifycommand.h index 0aac386..36de37a 100644 --- a/libpqpp/pq-modifycommand.h +++ b/libpqpp/pq-modifycommand.h @@ -1,20 +1,17 @@ #ifndef PQ_MODIFYCOMMAND_H #define PQ_MODIFYCOMMAND_H -#include <modifycommand.h> -#include "pq-prepared.h" #include "pq-connection.h" +#include "pq-prepared.h" +#include <modifycommand.h> namespace PQ { class ModifyCommand : public DB::ModifyCommand, public PreparedStatement { - public: - ModifyCommand(Connection *, const std::string & sql, const DB::CommandOptionsCPtr &); + public: + ModifyCommand(Connection *, const std::string & sql, const DB::CommandOptionsCPtr &); - unsigned int execute(bool) override; + unsigned int execute(bool) override; }; } #endif - - - |