summaryrefslogtreecommitdiffstats
path: root/logic/VersionFile.h
diff options
context:
space:
mode:
Diffstat (limited to 'logic/VersionFile.h')
-rw-r--r--logic/VersionFile.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/logic/VersionFile.h b/logic/VersionFile.h
index 67d22b23..169a2066 100644
--- a/logic/VersionFile.h
+++ b/logic/VersionFile.h
@@ -13,7 +13,7 @@ class VersionBuildError : public MMCError
{
public:
VersionBuildError(QString cause) : MMCError(cause) {};
- virtual ~VersionBuildError() {};
+ virtual ~VersionBuildError() noexcept {}
};
/**
@@ -28,7 +28,7 @@ public:
"version of the vanilla launcher than this version of MultiMC supports (%2).")
.arg(actual)
.arg(supported)) {};
- virtual ~LauncherVersionError() {};
+ virtual ~LauncherVersionError() noexcept {}
};
/**
@@ -43,7 +43,7 @@ public:
.arg(fileId)
.arg(mcVersion)
.arg(parentMcVersion)) {};
- virtual ~MinecraftVersionMismatch() {};
+ virtual ~MinecraftVersionMismatch() noexcept {}
};
struct RawLibrary;
@@ -124,4 +124,4 @@ public: /* data */
QList<RawLibraryPtr> overwriteLibs;
QList<RawLibraryPtr> addLibs;
QList<QString> removeLibs;
-}; \ No newline at end of file
+};