diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-08-06 12:58:46 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-08-06 13:27:08 -0400 |
| commit | 00a68c5eea17db975446c499a6dbf84311441f04 (patch) | |
| tree | 654297114f26b6da04f27b630a9465036044e226 /src/yuzu/about_dialog.cpp | |
| parent | 1ac45342ddf8a12052d88d669240e5522aaf6395 (diff) | |
qt: Default destructors where applicable
Makes code consistent with our style of defaulting special member
functions where applicable.
Diffstat (limited to 'src/yuzu/about_dialog.cpp')
| -rw-r--r-- | src/yuzu/about_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/about_dialog.cpp b/src/yuzu/about_dialog.cpp index 39ed3bccf..a81ad2888 100644 --- a/src/yuzu/about_dialog.cpp +++ b/src/yuzu/about_dialog.cpp @@ -15,4 +15,4 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent), ui(new Ui::AboutDia Common::g_scm_desc, QString(Common::g_build_date).left(10))); } -AboutDialog::~AboutDialog() {} +AboutDialog::~AboutDialog() = default; |
