mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-11 21:22:47 +01:00
Use the override specifier (C++11) where we expect to be overriding the virtual function of a base class
This commit is contained in:
@@ -46,7 +46,7 @@ public:
|
||||
req(std::move(_req)), path(_path), func(_func)
|
||||
{
|
||||
}
|
||||
void operator()()
|
||||
void operator()() override
|
||||
{
|
||||
func(req.get(), path);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user