mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-12 19:19:30 +00:00
LibWeb: Return const&
from GridMinMax getters
This commit is contained in:
parent
9c7c33e0aa
commit
1009a6e8c4
Notes:
github-actions[bot]
2025-06-13 17:58:26 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: 1009a6e8c4
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5080
Reviewed-by: https://github.com/trflynn89
1 changed files with 2 additions and 2 deletions
|
@ -81,8 +81,8 @@ public:
|
|||
GridMinMax(CSS::GridSize min_grid_size, CSS::GridSize max_grid_size);
|
||||
GridMinMax() = default;
|
||||
|
||||
GridSize min_grid_size() const& { return m_min_grid_size; }
|
||||
GridSize max_grid_size() const& { return m_max_grid_size; }
|
||||
GridSize const& min_grid_size() const& { return m_min_grid_size; }
|
||||
GridSize const& max_grid_size() const& { return m_max_grid_size; }
|
||||
|
||||
String to_string() const;
|
||||
bool operator==(GridMinMax const& other) const = default;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue