mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
LibWeb/CSS: Remove unused default constructors in GridTrackSize.h
Some checks are pending
CI / macOS, arm64, Sanitizer_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, Clang (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
Some checks are pending
CI / macOS, arm64, Sanitizer_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, Clang (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
This commit is contained in:
parent
237356c5ca
commit
fdecdb9410
Notes:
github-actions[bot]
2025-06-13 17:58:02 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: fdecdb9410
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5080
Reviewed-by: https://github.com/trflynn89
2 changed files with 0 additions and 19 deletions
|
@ -26,7 +26,6 @@ public:
|
|||
GridSize(LengthPercentage);
|
||||
GridSize(Flex);
|
||||
GridSize(Type);
|
||||
GridSize();
|
||||
~GridSize();
|
||||
|
||||
static GridSize make_auto();
|
||||
|
@ -65,7 +64,6 @@ private:
|
|||
class GridFitContent {
|
||||
public:
|
||||
GridFitContent(GridSize);
|
||||
GridFitContent();
|
||||
|
||||
GridSize const& max_grid_size() const& { return m_max_grid_size; }
|
||||
|
||||
|
@ -79,7 +77,6 @@ private:
|
|||
class GridMinMax {
|
||||
public:
|
||||
GridMinMax(CSS::GridSize min_grid_size, CSS::GridSize max_grid_size);
|
||||
GridMinMax() = default;
|
||||
|
||||
GridSize const& min_grid_size() const& { return m_min_grid_size; }
|
||||
GridSize const& max_grid_size() const& { return m_max_grid_size; }
|
||||
|
@ -125,7 +122,6 @@ public:
|
|||
};
|
||||
GridRepeat(GridTrackSizeList, int repeat_count);
|
||||
GridRepeat(GridTrackSizeList, Type);
|
||||
GridRepeat();
|
||||
|
||||
bool is_auto_fill() const { return m_type == Type::AutoFill; }
|
||||
bool is_auto_fit() const { return m_type == Type::AutoFit; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue