aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/thread/Task.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-01-18 05:32:25 +0000
committersaturneric <[email protected]>2024-01-18 05:32:25 +0000
commit38e4a656dbdd14cf7a6a91cda6c814b5290acd93 (patch)
tree33f614f861dec8fef4ea456dda26abab2e3329f5 /src/core/thread/Task.cpp
parentfix: improve code quality, docs and ci files (diff)
downloadGpgFrontend-38e4a656dbdd14cf7a6a91cda6c814b5290acd93.tar.gz
GpgFrontend-38e4a656dbdd14cf7a6a91cda6c814b5290acd93.zip
fix: slove codacy issues
Diffstat (limited to 'src/core/thread/Task.cpp')
-rw-r--r--src/core/thread/Task.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/thread/Task.cpp b/src/core/thread/Task.cpp
index 1d251520..dc0cfe94 100644
--- a/src/core/thread/Task.cpp
+++ b/src/core/thread/Task.cpp
@@ -138,7 +138,7 @@ class Task::Impl {
void init() {
GF_CORE_LOG_TRACE("task {} created, parent: {}, impl: {}", name_,
- (void *)parent_, (void *)this);
+ static_cast<void *>(parent_), static_cast<void *>(this));
//
HoldOnLifeCycle(false);