refactor(Core): apply clang-tidy modernize-use-equals-default (#3834)
This commit is contained in:
parent
0b8ec1f6ee
commit
1cf39b3d22
35 changed files with 48 additions and 56 deletions
|
|
@ -36,9 +36,7 @@ namespace ACE_Based
|
|||
}
|
||||
|
||||
//! Destroy a LockedQueue.
|
||||
virtual ~LockedQueue()
|
||||
{
|
||||
}
|
||||
virtual ~LockedQueue() = default;
|
||||
|
||||
//! Adds an item to the queue.
|
||||
void add(const T& item)
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ namespace acore
|
|||
class Runnable
|
||||
{
|
||||
public:
|
||||
virtual ~Runnable() {}
|
||||
virtual ~Runnable() = default;
|
||||
virtual void run() = 0;
|
||||
|
||||
void incReference() { ++m_refs; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue