fix: modernize-use-equals-default warnings (#44935)
fix: use '= default' to define a trivial destructor [modernize-use-equals-default]
This commit is contained in:
parent
229c2a8f50
commit
158a87d494
14 changed files with 64 additions and 64 deletions
|
@ -20,7 +20,7 @@ class WindowListObserver : public base::CheckedObserver {
|
|||
virtual void OnWindowAllClosed() {}
|
||||
|
||||
protected:
|
||||
~WindowListObserver() override {}
|
||||
~WindowListObserver() override = default;
|
||||
};
|
||||
|
||||
} // namespace electron
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue