mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
Remove the virtual specifier for functions with the override specifier
`override` guarantees that the function is virtual (in addition to that the function is overriding a virtual function from a base class).
This commit is contained in:
parent
929fd7276c
commit
1bcd44223c
2 changed files with 8 additions and 8 deletions
|
|
@ -19,7 +19,7 @@ class CBitcoinLevelDBLogger : public leveldb::Logger {
|
|||
public:
|
||||
// This code is adapted from posix_logger.h, which is why it is using vsprintf.
|
||||
// Please do not do this in normal code
|
||||
virtual void Logv(const char * format, va_list ap) override {
|
||||
void Logv(const char * format, va_list ap) override {
|
||||
if (!LogAcceptCategory(BCLog::LEVELDB)) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue