Branch: refs/heads/main
Home: https://github.com/WebKit/WebKit
Commit: eeac234329e99b241fc77dd9e069a6f8e7dbc83d
https://github.com/WebKit/WebKit/commit/eeac234329e99b241fc77dd9e069a6f8e7dbc83d
Author: Ahmad Saleem <[email protected]>
Date: 2026-08-03 (Mon, 03 Aug 2026)
Changed paths:
M Source/WebCore/mathml/MathMLOperatorDictionary.h
Log Message:
-----------
Use a default member initializer for MathMLOperatorDictionary::Property::form
https://bugs.webkit.org/show_bug.cgi?id=320894
rdar://183910863
Reviewed by Frédéric Wang Nélar.
Property::form was the only member of the struct left without a default member
initializer, so a default-constructed Property had an indeterminate form until
each field was assigned. Give it Form::Infix, which is both the spec's default
form and what MathMLOperatorElement::computeDictionaryProperty() already assumed
when default-constructing a Property before selecting the form.
No change in behavior: Property is never aggregate-initialized; every
construction site default-constructs and then assigns each field.
* Source/WebCore/mathml/MathMLOperatorDictionary.h:
Canonical link: https://commits.webkit.org/318463@main
To unsubscribe from these emails, change your notification settings at
https://github.com/WebKit/WebKit/settings/notifications