summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-selectcommand.h
diff options
context:
space:
mode:
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;
};
}