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

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

parent 6174f860
No related branches found
No related tags found
No related merge requests found
......@@ -45,14 +45,14 @@ public:
/**
* Destructor.
*/
virtual ~OcciConnFactory() override;
~OcciConnFactory() 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