mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
LibWeb: Avoid copy when creating EasingStyleValue
This commit is contained in:
parent
70d99db992
commit
815a87100e
Notes:
github-actions[bot]
2024-09-22 04:43:03 +00:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/LadybirdBrowser/ladybird/commit/815a87100ec Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1442
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ public:
|
|||
bool properties_equal(EasingStyleValue const& other) const { return m_function == other.m_function; }
|
||||
|
||||
private:
|
||||
EasingStyleValue(Function function)
|
||||
EasingStyleValue(Function const& function)
|
||||
: StyleValueWithDefaultOperators(Type::Easing)
|
||||
, m_function(function)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue