Use "= default" for all trivial default ctors and dtors

Replace user-specified empty constructors and destructors with the
compiler-generated versions, which has a number of advantages for code
generation, in addition to being more clear.

Closes #22965.

Closes #24058.
This commit is contained in:
Vadim Zeitlin 2023-11-17 01:33:32 +01:00
parent 16cca70f8f
commit dede4b9326
356 changed files with 589 additions and 586 deletions

View file

@ -160,7 +160,7 @@ public:
DefaultPane();
}
~wxAuiPaneInfo() {}
~wxAuiPaneInfo() = default;
// Write the safe parts of a newly loaded PaneInfo structure "source" into "this"
// used on loading perspectives etc.