diff options
Diffstat (limited to 'src/core/thread/Task.cpp')
-rw-r--r-- | src/core/thread/Task.cpp | 2 |
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); |