[Webkit-unassigned] [Bug 278475] New: Web Inspector: JavaScriptCore - error: member access into incomplete type 'Inspector::RemoteConnectionToTarget'
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Aug 21 11:46:26 PDT 2024
https://bugs.webkit.org/show_bug.cgi?id=278475
Bug ID: 278475
Summary: Web Inspector: JavaScriptCore - error: member access
into incomplete type
'Inspector::RemoteConnectionToTarget'
Product: WebKit
Version: WebKit Nightly Build
Hardware: All
OS: All
Status: NEW
Severity: Normal
Priority: P2
Component: Web Inspector
Assignee: webkit-unassigned at lists.webkit.org
Reporter: qianlangchen at apple.com
CC: inspector-bugzilla-changes at group.apple.com
C++20 and C++23 make implicit destructors constexpr when possible, and compiler changes make this happen in more cases. This causes a few objects to be instantiated more eagerly which is causing template instantiation failures.
We likely need to avoid forward-declaring some types in this case, or explicitly define the destructors out-of-line to avoid the implicit destructor being instantiated too early.
LLVM PR which contains some discussion on the C++ standard changes that cause this failure: https://github.com/llvm/llvm-project/pull/77753
rdar://134288008
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20240821/0de3a4f8/attachment-0001.htm>
More information about the webkit-unassigned
mailing list