Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
aec0ae2e
Commit
aec0ae2e
authored
6 years ago
by
Steven Murray
Browse files
Options
Downloads
Patches
Plain Diff
Removed redundant 'virtual' keyword from rdbms/wrapper/SqliteRset.hpp
parent
5467c963
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rdbms/wrapper/SqliteRset.hpp
+5
-5
5 additions, 5 deletions
rdbms/wrapper/SqliteRset.hpp
with
5 additions
and
5 deletions
rdbms/wrapper/SqliteRset.hpp
+
5
−
5
View file @
aec0ae2e
...
...
@@ -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:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment