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:
trop[bot] 2024-12-03 21:19:47 -06:00 committed by GitHub
parent e1d9df224c
commit d1fe7d2227
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 64 additions and 64 deletions

View file

@ -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;