summaryrefslogtreecommitdiff
path: root/src/common/Threading/Threading.h
diff options
context:
space:
mode:
authorFrancesco Borzì <borzifrancesco@gmail.com>2020-12-07 19:21:55 +0100
committerGitHub <noreply@github.com>2020-12-07 19:21:55 +0100
commit1cf39b3d22ca22babda7cbc3f8efea10370b5700 (patch)
tree98be818100d5381a72af25f61d16b0cce86d15be /src/common/Threading/Threading.h
parent0b8ec1f6eeef15be9798e4ebc038e44d7cd64feb (diff)
refactor(Core): apply clang-tidy modernize-use-equals-default (#3834)
Diffstat (limited to 'src/common/Threading/Threading.h')
-rw-r--r--src/common/Threading/Threading.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Threading/Threading.h b/src/common/Threading/Threading.h
index 8d1c7a186c..9671dee0e6 100644
--- a/src/common/Threading/Threading.h
+++ b/src/common/Threading/Threading.h
@@ -18,7 +18,7 @@ namespace acore
class Runnable
{
public:
- virtual ~Runnable() {}
+ virtual ~Runnable() = default;
virtual void run() = 0;
void incReference() { ++m_refs; }