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-selectcommand.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-selectcommand.h')
-rw-r--r-- | libmysqlpp/my-selectcommand.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmysqlpp/my-selectcommand.h b/libmysqlpp/my-selectcommand.h index dc4937a..b9a0edc 100644 --- a/libmysqlpp/my-selectcommand.h +++ b/libmysqlpp/my-selectcommand.h @@ -11,8 +11,8 @@ namespace MySQL { public: SelectCommand(const Connection *, const std::string & sql); - bool fetch(); - void execute(); + bool fetch() override; + void execute() override; private: bool prepared; |