From f71898826b957548fe703bba1e2f3864dc56c0f8 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Tue, 29 Dec 2015 05:01:53 +0000 Subject: Add missing override attribute --- libmysqlpp/my-selectcommand.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmysqlpp/my-selectcommand.h') diff --git a/libmysqlpp/my-selectcommand.h b/libmysqlpp/my-selectcommand.h index dc4937a..b9a0edc 100644 --- a/libmysqlpp/my-selectcommand.h +++ b/libmysqlpp/my-selectcommand.h @@ -11,8 +11,8 @@ namespace MySQL { public: SelectCommand(const Connection *, const std::string & sql); - bool fetch(); - void execute(); + bool fetch() override; + void execute() override; private: bool prepared; -- cgit v1.2.3