summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-selectcommand.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-12-29 05:01:53 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2015-12-29 06:00:07 +0000
commit65b66ae41ff5dd3d79e133f62d1f8e8fc851153b (patch)
tree308cab147259afc339f711f0e656faf654471e69 /libsqlitepp/sqlite-selectcommand.h
parentNon-const insertId (diff)
downloadlibdbpp-sqlite-65b66ae41ff5dd3d79e133f62d1f8e8fc851153b.tar.bz2
libdbpp-sqlite-65b66ae41ff5dd3d79e133f62d1f8e8fc851153b.tar.xz
libdbpp-sqlite-65b66ae41ff5dd3d79e133f62d1f8e8fc851153b.zip
Add missing override attribute
Diffstat (limited to 'libsqlitepp/sqlite-selectcommand.h')
-rw-r--r--libsqlitepp/sqlite-selectcommand.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsqlitepp/sqlite-selectcommand.h b/libsqlitepp/sqlite-selectcommand.h
index c795018..8c9b04d 100644
--- a/libsqlitepp/sqlite-selectcommand.h
+++ b/libsqlitepp/sqlite-selectcommand.h
@@ -11,8 +11,8 @@ namespace SQLite {
public:
SelectCommand(const Connection *, const std::string & sql);
- bool fetch();
- void execute();
+ bool fetch() override;
+ void execute() override;
};
}