mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-19 18:15:50 +00:00
Add override keyword on all derived functions:
This silences warnings on latest clang compiler.
This commit is contained in:
committed by
Edward Hennis
parent
b2cf1e4c65
commit
e1fc81f66f
@@ -37,7 +37,7 @@ public:
|
||||
}
|
||||
|
||||
std::string
|
||||
getName()
|
||||
getName() override
|
||||
{
|
||||
return std::string ();
|
||||
}
|
||||
@@ -48,7 +48,7 @@ public:
|
||||
}
|
||||
|
||||
Status
|
||||
fetch (void const*, std::shared_ptr<NodeObject>*)
|
||||
fetch (void const*, std::shared_ptr<NodeObject>*) override
|
||||
{
|
||||
return notFound;
|
||||
}
|
||||
@@ -67,22 +67,22 @@ public:
|
||||
}
|
||||
|
||||
void
|
||||
store (std::shared_ptr<NodeObject> const& object)
|
||||
store (std::shared_ptr<NodeObject> const& object) override
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
storeBatch (Batch const& batch)
|
||||
storeBatch (Batch const& batch) override
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
for_each (std::function <void(std::shared_ptr<NodeObject>)> f)
|
||||
for_each (std::function <void(std::shared_ptr<NodeObject>)> f) override
|
||||
{
|
||||
}
|
||||
|
||||
int
|
||||
getWriteLoad ()
|
||||
getWriteLoad () override
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user