mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02: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:
Notes:
github-actions[bot]
2025-10-21 12:53:15 +00:00
Author: https://github.com/R-Goc Commit: https://github.com/LadybirdBrowser/ladybird/commit/e8a9d23f924 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6525 Reviewed-by: https://github.com/gmta ✅
@@ -42,7 +42,7 @@ struct CubicBezierEasingFunction {
|
||||
};
|
||||
|
||||
struct StepsEasingFunction {
|
||||
long interval_count;
|
||||
i64 interval_count;
|
||||
StepPosition position;
|
||||
String stringified;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user