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

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

parent 5467c963
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ public:
*
* @return The SQL statement.
*/
virtual const std::string &getSql() const override;
const std::string &getSql() const override;
/**
* Attempts to get the next row of the result set.
......@@ -65,7 +65,7 @@ public:
* @return True if a row has been retrieved else false if there are no more
* rows in the result set.
*/
virtual bool next() override;
bool next() override;
/**
* Returns true if the specified column contains a null value.
......@@ -73,7 +73,7 @@ public:
* @param colName The name of the column.
* @return True if the specified column contains a null value.
*/
virtual bool columnIsNull(const std::string &colName) const override;
bool columnIsNull(const std::string &colName) const override;
/**
* Returns the value of the specified column as a string.
......@@ -83,7 +83,7 @@ public:
* @param colName The name of the column.
* @return The string value of the specified column.
*/
virtual optional<std::string> columnOptionalString(const std::string &colName) const override;
optional<std::string> columnOptionalString(const std::string &colName) const override;
/**
* Returns the value of the specified column as an integer.
......@@ -93,7 +93,7 @@ public:
* @param colName The name of the column.
* @return The value of the specified column.
*/
virtual optional<uint64_t> columnOptionalUint64(const std::string &colName) const override;
optional<uint64_t> columnOptionalUint64(const std::string &colName) const 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