mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:47:45 +00:00
LibWeb: Mark CalculatedStyleValue::resolve_integer() as const
This commit is contained in:
parent
6045143d39
commit
53f3ed026a
2 changed files with 2 additions and 2 deletions
|
@ -2392,7 +2392,7 @@ Optional<double> CalculatedStyleValue::resolve_number() const
|
|||
return {};
|
||||
}
|
||||
|
||||
Optional<i64> CalculatedStyleValue::resolve_integer()
|
||||
Optional<i64> CalculatedStyleValue::resolve_integer() const
|
||||
{
|
||||
auto result = m_calculation->resolve({}, {});
|
||||
if (result.value().has<Number>())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue