From 1be1e84ebfcb90a2940e471cb5db58e833f1e6ab Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Tue, 24 Apr 2018 19:25:52 +0300 Subject: [PATCH] godbcbackend: Add missing overrides to SODBC Found by Travis --- modules/godbcbackend/sodbc.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/godbcbackend/sodbc.hh b/modules/godbcbackend/sodbc.hh index 947d6e1cde..b8c369d684 100644 --- a/modules/godbcbackend/sodbc.hh +++ b/modules/godbcbackend/sodbc.hh @@ -63,16 +63,16 @@ public: virtual ~SODBC( void ); //! Sets the logging state. - void setLog( bool state ); + void setLog( bool state ) override; - std::unique_ptr prepare(const string& query, int nparams); - void execute(const string& query); + std::unique_ptr prepare(const string& query, int nparams) override; + void execute(const string& query) override; void startTransaction() override; void rollback() override; void commit() override; //! Returns an exception. - SSqlException sPerrorException( const std::string & reason ); + SSqlException sPerrorException( const std::string & reason ) override; }; -- 2.47.2