LibWeb: Mark SVG::NumberPercentage accessors as const

This commit is contained in:
MacDue 2023-05-02 22:39:07 +01:00 committed by Andreas Kling
parent cf0e31ca87
commit 3d54b9ffa3
Notes: sideshowbarker 2024-07-17 03:03:37 +09:00
2 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ Optional<float> AttributeParser::parse_length(StringView input)
return {};
}
float NumberPercentage::resolve_relative_to(float length)
float NumberPercentage::resolve_relative_to(float length) const
{
if (!m_is_percentage)
return m_value;

View File

@ -111,9 +111,9 @@ public:
return NumberPercentage(value, false);
}
float resolve_relative_to(float length);
float resolve_relative_to(float length) const;
float value() { return m_value; }
float value() const { return m_value; }
private:
float m_value;