fix: modernize-use-equals-default warnings (#44944)

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:32 -06:00 committed by GitHub
parent 7f6594654c
commit a7066af0f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 64 additions and 64 deletions

View file

@ -85,7 +85,7 @@ class BrowserObserver : public base::CheckedObserver {
#endif
protected:
~BrowserObserver() override {}
~BrowserObserver() override = default;
};
} // namespace electron