diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-29 05:01:53 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-29 06:00:07 +0000 |
commit | f71898826b957548fe703bba1e2f3864dc56c0f8 (patch) | |
tree | 9a886af50e1f706a0514fbbab05084a7734ab5c7 /libmysqlpp/my-modifycommand.h | |
parent | Non-const insertId (diff) | |
download | libdbpp-mysql-f71898826b957548fe703bba1e2f3864dc56c0f8.tar.bz2 libdbpp-mysql-f71898826b957548fe703bba1e2f3864dc56c0f8.tar.xz libdbpp-mysql-f71898826b957548fe703bba1e2f3864dc56c0f8.zip |
Add missing override attribute
Diffstat (limited to 'libmysqlpp/my-modifycommand.h')
-rw-r--r-- | libmysqlpp/my-modifycommand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqlpp/my-modifycommand.h b/libmysqlpp/my-modifycommand.h index cf570bb..0f635cd 100644 --- a/libmysqlpp/my-modifycommand.h +++ b/libmysqlpp/my-modifycommand.h @@ -11,7 +11,7 @@ namespace MySQL { ModifyCommand(const Connection *, const std::string & sql); virtual ~ModifyCommand(); - unsigned int execute(bool); + unsigned int execute(bool) override; private: void prepare() const; |