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
|
@ -27,7 +27,7 @@ namespace electron {
|
|||
|
||||
class NativeWindowObserver : public base::CheckedObserver {
|
||||
public:
|
||||
~NativeWindowObserver() override {}
|
||||
~NativeWindowObserver() override = default;
|
||||
|
||||
// Called when the web page in window wants to create a popup window.
|
||||
virtual void WillCreatePopupWindow(const std::u16string& frame_name,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue