mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
CSS: Use i64 in StepsEasingFunction
Unbreaks Windows build. resolve_integer returns an i64 making creation of a StepsEasingFunction with its result a narrowing conversion before this change as a long is 32 bits on Windows.
This commit is contained in:
parent
80b629578e
commit
e8a9d23f92
|
|
@ -42,7 +42,7 @@ struct CubicBezierEasingFunction {
|
|||
};
|
||||
|
||||
struct StepsEasingFunction {
|
||||
long interval_count;
|
||||
i64 interval_count;
|
||||
StepPosition position;
|
||||
String stringified;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user