summaryrefslogtreecommitdiff
path: root/libpqpp/pq-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
commit710133b747c45fd2f62982f734ea5b6233e99333 (patch)
tree91d36ce3c84fa8ed7432fe2ffa5dcef43c31c96d /libpqpp/pq-selectcommand.h
parentNon-const insertId (diff)
downloadlibdbpp-postgresql-710133b747c45fd2f62982f734ea5b6233e99333.tar.bz2
libdbpp-postgresql-710133b747c45fd2f62982f734ea5b6233e99333.tar.xz
libdbpp-postgresql-710133b747c45fd2f62982f734ea5b6233e99333.zip
Add missing override attribute
Diffstat (limited to 'libpqpp/pq-selectcommand.h')
-rw-r--r--libpqpp/pq-selectcommand.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpqpp/pq-selectcommand.h b/libpqpp/pq-selectcommand.h
index c72c314..cc35957 100644
--- a/libpqpp/pq-selectcommand.h
+++ b/libpqpp/pq-selectcommand.h
@@ -14,8 +14,8 @@ namespace PQ {
SelectCommand(const Connection *, const std::string & sql, unsigned int no);
virtual ~SelectCommand();
- bool fetch();
- void execute();
+ bool fetch() override;
+ void execute() override;
private:
void fetchTuples();