From 65b66ae41ff5dd3d79e133f62d1f8e8fc851153b Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Tue, 29 Dec 2015 05:01:53 +0000 Subject: Add missing override attribute --- libsqlitepp/sqlite-selectcommand.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libsqlitepp/sqlite-selectcommand.h') 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; }; } -- cgit v1.2.3