mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 05:09:12 +00:00
LibWeb: Return const&
from GridTrackSizeList::list()
This commit is contained in:
parent
286771457a
commit
cdf3e52172
Notes:
github-actions[bot]
2025-06-13 17:58:38 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: cdf3e52172
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5080
Reviewed-by: https://github.com/trflynn89
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ public:
|
|||
static GridTrackSizeList make_none();
|
||||
|
||||
Vector<CSS::ExplicitGridTrack> track_list() const;
|
||||
Vector<Variant<ExplicitGridTrack, GridLineNames>> list() const { return m_list; }
|
||||
auto const& list() const { return m_list; }
|
||||
|
||||
String to_string() const;
|
||||
bool operator==(GridTrackSizeList const& other) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue