Branch: refs/heads/main
Home: https://github.com/WebKit/WebKit
Commit: 874cd3bb87fb7a6a46fb9e4c12018bccd72a1865
https://github.com/WebKit/WebKit/commit/874cd3bb87fb7a6a46fb9e4c12018bccd72a1865
Author: Sosuke Suzuki <[email protected]>
Date: 2025-10-23 (Thu, 23 Oct 2025)
Changed paths:
M Source/JavaScriptCore/runtime/WeakGCSet.h
Log Message:
-----------
[JSC] Remove unnecessary `inline` from `WeakGCSet` constructor and destructor
https://bugs.webkit.org/show_bug.cgi?id=301400
Reviewed by Yusuke Suzuki.
Our LTO build fails via `inline` for declartions of `WeakGCSet` constructor and
destructor.
These functions should still be inlined even if `inline` is removed from their
declarations,
because they are defined with `inline` in `WeakGCSetInlines.h` (as is already
the case for `WeakGCMap`).
So this patch removes `inline` from these functions.
* Source/JavaScriptCore/runtime/WeakGCSet.h:
Canonical link: https://commits.webkit.org/302074@main
To unsubscribe from these emails, change your notification settings at
https://github.com/WebKit/WebKit/settings/notifications