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 | 65b66ae41ff5dd3d79e133f62d1f8e8fc851153b (patch) | |
tree | 308cab147259afc339f711f0e656faf654471e69 /libsqlitepp/sqlite-modifycommand.h | |
parent | Non-const insertId (diff) | |
download | libdbpp-sqlite-65b66ae41ff5dd3d79e133f62d1f8e8fc851153b.tar.bz2 libdbpp-sqlite-65b66ae41ff5dd3d79e133f62d1f8e8fc851153b.tar.xz libdbpp-sqlite-65b66ae41ff5dd3d79e133f62d1f8e8fc851153b.zip |
Add missing override attribute
Diffstat (limited to 'libsqlitepp/sqlite-modifycommand.h')
-rw-r--r-- | libsqlitepp/sqlite-modifycommand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsqlitepp/sqlite-modifycommand.h b/libsqlitepp/sqlite-modifycommand.h index 657639b..c71dd1f 100644 --- a/libsqlitepp/sqlite-modifycommand.h +++ b/libsqlitepp/sqlite-modifycommand.h @@ -11,7 +11,7 @@ namespace SQLite { ModifyCommand(const Connection *, const std::string & sql); virtual ~ModifyCommand(); - unsigned int execute(bool); + unsigned int execute(bool) override; private: void prepare() const; |