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:
parent
a1d8676e9c
commit
69b80e02e7
4 changed files with 5 additions and 11 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue