mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:28:12 +00:00
LibWeb: Use doubles for CSS dimension types
Avoid unintentionally converting between float and double multiple times by just using double everywhere. Also, remove the unused `int` versions of their constructors.
This commit is contained in:
parent
95f80bc65b
commit
1feacd4b52
16 changed files with 34 additions and 73 deletions
|
@ -19,7 +19,6 @@ public:
|
|||
|
||||
static Optional<Type> unit_from_name(StringView);
|
||||
|
||||
Frequency(int value, Type type);
|
||||
Frequency(double value, Type type);
|
||||
static Frequency make_hertz(double);
|
||||
Frequency percentage_of(Percentage const&) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue