fix: modernize-use-equals-default warnings (#44946)
fix: use '= default' to define a trivial destructor [modernize-use-equals-default] 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
e1d9df224c
commit
d1fe7d2227
14 changed files with 64 additions and 64 deletions
|
@ -50,7 +50,7 @@ class AutofillPopupChildView : public views::View {
|
|||
AutofillPopupChildView& operator=(const AutofillPopupChildView&) = delete;
|
||||
|
||||
private:
|
||||
~AutofillPopupChildView() override {}
|
||||
~AutofillPopupChildView() override = default;
|
||||
|
||||
// views::Views implementation
|
||||
void GetAccessibleNodeData(ui::AXNodeData* node_data) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue