aboutsummaryrefslogtreecommitdiff
path: root/src/guiMainMenu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/guiMainMenu.h')
-rw-r--r--src/guiMainMenu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guiMainMenu.h b/src/guiMainMenu.h
index 0bc5c7be1..43a3b1a33 100644
--- a/src/guiMainMenu.h
+++ b/src/guiMainMenu.h
@@ -26,7 +26,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
struct MainMenuDataForScript {
- MainMenuDataForScript() {}
+ MainMenuDataForScript() = default;
// Whether the server has requested a reconnect
bool reconnect_requested = false;
@@ -51,5 +51,5 @@ struct MainMenuData {
// Data to be passed to the script
MainMenuDataForScript script_data;
- MainMenuData() {}
+ MainMenuData() = default;
};