[clang] [webkit.RefCntblBaseVirtualDtor] ThreadSafeRefCounted still generates warnings (PR #108656)
Ryosuke Niwa via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 17 19:13:15 PDT 2024
================
@@ -119,6 +119,11 @@ template<class T, DestructionThread destructionThread = DestructionThread::Any>
ensureOnMainThread([this] {
delete static_cast<const T*>(this);
});
+ } else if constexpr (destructionThread == DestructionThread::MainRunLoop) {
+ auto deleteThis = [this] {
----------------
rniwa wrote:
I don't think so. At least we don't do that in WebKit for now.
https://github.com/llvm/llvm-project/pull/108656
More information about the cfe-commits
mailing list