mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 21:59:07 +00:00
LibWeb: Return const&
from GridRepeat::grid_track_size_list()
This commit is contained in:
parent
cdf3e52172
commit
9c7c33e0aa
Notes:
github-actions[bot]
2025-06-13 17:58:31 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: 9c7c33e0aa
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5080
Reviewed-by: https://github.com/trflynn89
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ public:
|
||||||
VERIFY(is_default());
|
VERIFY(is_default());
|
||||||
return m_repeat_count;
|
return m_repeat_count;
|
||||||
}
|
}
|
||||||
GridTrackSizeList grid_track_size_list() const& { return m_grid_track_size_list; }
|
GridTrackSizeList const& grid_track_size_list() const& { return m_grid_track_size_list; }
|
||||||
Type type() const& { return m_type; }
|
Type type() const& { return m_type; }
|
||||||
|
|
||||||
String to_string() const;
|
String to_string() const;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue