mirror of
https://github.com/XRPLF/clio.git
synced 2026-04-29 15:37:53 +00:00
style: clang-tidy auto fixes (#1817)
Fixes #1816. Please review and commit clang-tidy fixes. Co-authored-by: kuznetsss <15742918+kuznetsss@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
590c07ad84
commit
c0d52723c9
@@ -104,7 +104,7 @@ struct BasicScheduledOperation : util::MoveTracker {
|
||||
{
|
||||
}
|
||||
|
||||
~BasicScheduledOperation()
|
||||
~BasicScheduledOperation() override
|
||||
{
|
||||
if (not wasMoved())
|
||||
abort();
|
||||
@@ -178,7 +178,7 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
~StoppableOperation()
|
||||
~StoppableOperation() override
|
||||
{
|
||||
if (not wasMoved())
|
||||
requestStop();
|
||||
@@ -243,7 +243,7 @@ public:
|
||||
repeat_.start(interval, std::forward<decltype(fn)>(fn));
|
||||
}
|
||||
|
||||
~RepeatingOperation()
|
||||
~RepeatingOperation() override
|
||||
{
|
||||
if (not wasMoved())
|
||||
abort();
|
||||
|
||||
Reference in New Issue
Block a user