chore: use =default for default constructors/destructors (#29511)
This commit is contained in:
parent
b1d1ac6524
commit
81c5da5221
44 changed files with 68 additions and 61 deletions
|
@ -23,7 +23,7 @@ ElectronDesktopWindowTreeHostWin::ElectronDesktopWindowTreeHostWin(
|
|||
desktop_native_widget_aura),
|
||||
native_window_view_(native_window_view) {}
|
||||
|
||||
ElectronDesktopWindowTreeHostWin::~ElectronDesktopWindowTreeHostWin() {}
|
||||
ElectronDesktopWindowTreeHostWin::~ElectronDesktopWindowTreeHostWin() = default;
|
||||
|
||||
bool ElectronDesktopWindowTreeHostWin::PreHandleMSG(UINT message,
|
||||
WPARAM w_param,
|
||||
|
|
|
@ -55,9 +55,9 @@ TaskbarHost::ThumbarButton::ThumbarButton(const TaskbarHost::ThumbarButton&) =
|
|||
default;
|
||||
TaskbarHost::ThumbarButton::~ThumbarButton() = default;
|
||||
|
||||
TaskbarHost::TaskbarHost() {}
|
||||
TaskbarHost::TaskbarHost() = default;
|
||||
|
||||
TaskbarHost::~TaskbarHost() {}
|
||||
TaskbarHost::~TaskbarHost() = default;
|
||||
|
||||
bool TaskbarHost::SetThumbarButtons(HWND window,
|
||||
const std::vector<ThumbarButton>& buttons) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue