mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-08 02:26:10 +00:00
LibWeb: Mark SVG::NumberPercentage accessors as const
This commit is contained in:
parent
cf0e31ca87
commit
3d54b9ffa3
Notes:
sideshowbarker
2024-07-17 03:03:37 +09:00
Author: https://github.com/MacDue
Commit: 3d54b9ffa3
Pull-request: https://github.com/SerenityOS/serenity/pull/18617
Reviewed-by: https://github.com/gmta
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue