Skip to content
Snippets Groups Projects
Commit 5467c963 authored by Steven Murray's avatar Steven Murray
Browse files

Removed redundant 'virtual' keyword from rdbms/wrapper/SqliteConnFactory.hpp

parent 79cc2e97
No related branches found
No related tags found
No related merge requests found
......@@ -40,14 +40,14 @@ public:
/**
* Destructor.
*/
virtual ~SqliteConnFactory() override;
~SqliteConnFactory() override;
/**
* Returns a newly created database connection.
*
* @return A newly created database connection.
*/
virtual std::unique_ptr<Conn> create() override;
std::unique_ptr<Conn> create() override;
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment