diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-11-18 16:54:48 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2020-11-18 16:54:48 +0000 |
commit | d77f801dc01c5e30c0d96e907c8ac14f23d7b630 (patch) | |
tree | 29756c92cb200c1ddcb422723cd5e676d5c97074 /libmysqlpp/my-modifycommand.h | |
parent | Fixes for tidy (diff) | |
download | libdbpp-mysql-d77f801dc01c5e30c0d96e907c8ac14f23d7b630.tar.bz2 libdbpp-mysql-d77f801dc01c5e30c0d96e907c8ac14f23d7b630.tar.xz libdbpp-mysql-d77f801dc01c5e30c0d96e907c8ac14f23d7b630.zip |
Clang format
Diffstat (limited to 'libmysqlpp/my-modifycommand.h')
-rw-r--r-- | libmysqlpp/my-modifycommand.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/libmysqlpp/my-modifycommand.h b/libmysqlpp/my-modifycommand.h index 0670adc..ec2753f 100644 --- a/libmysqlpp/my-modifycommand.h +++ b/libmysqlpp/my-modifycommand.h @@ -1,23 +1,20 @@ #ifndef MY_MODIFYCOMMAND_H #define MY_MODIFYCOMMAND_H -#include <modifycommand.h> #include "my-command.h" +#include <modifycommand.h> namespace MySQL { class Connection; class ModifyCommand : public DB::ModifyCommand, public Command { - public: - ModifyCommand(const Connection *, const std::string & sql); + public: + ModifyCommand(const Connection *, const std::string & sql); - unsigned int execute(bool) override; + unsigned int execute(bool) override; - private: - void prepare() const; + private: + void prepare() const; }; } #endif - - - |