refactor: use = default to define trivial destructors (#46191)

refactor: use '= default' to define trivial destructors

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Charles Kerr <charles@charleskerr.com>
This commit is contained in:
trop[bot] 2025-03-22 10:14:41 -05:00 committed by GitHub
parent a1d8676e9c
commit 69b80e02e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 11 deletions

View file

@ -155,7 +155,7 @@ class JSLayoutManager : public views::LayoutManagerBase {
public:
explicit JSLayoutManager(LayoutCallback layout_callback)
: layout_callback_(std::move(layout_callback)) {}
~JSLayoutManager() override {}
~JSLayoutManager() override = default;
// views::LayoutManagerBase
views::ProposedLayout CalculateProposedLayout(