mirror of
https://github.com/electron/electron.git
synced 2026-01-09 15:38:08 -05:00
chore: use =default for default constructors/destructors (#29511)
This commit is contained in:
@@ -63,9 +63,9 @@ NotificationPresenter* NotificationPresenter::Create() {
|
||||
return presenter.release();
|
||||
}
|
||||
|
||||
NotificationPresenterWin::NotificationPresenterWin() {}
|
||||
NotificationPresenterWin::NotificationPresenterWin() = default;
|
||||
|
||||
NotificationPresenterWin::~NotificationPresenterWin() {}
|
||||
NotificationPresenterWin::~NotificationPresenterWin() = default;
|
||||
|
||||
bool NotificationPresenterWin::Init() {
|
||||
base::ThreadRestrictions::ScopedAllowIO allow_io;
|
||||
|
||||
Reference in New Issue
Block a user