aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform/atlauncher
diff options
context:
space:
mode:
authorLennyMcLennington <lenny@sneed.church>2022-07-30 17:10:59 +0100
committerGitHub <noreply@github.com>2022-07-30 17:10:59 +0100
commit94a63e3859e576658d832c62cffacbb6963ad1e6 (patch)
treecb6efc767b734de22675cdba1fed4b9728de509e /launcher/modplatform/atlauncher
parent74120fe1f3b072b78298dce68aedb397efb522a2 (diff)
parent842b7e6c3974c16adddf3cccda4e0008d8c64597 (diff)
downloadPrismLauncher-94a63e3859e576658d832c62cffacbb6963ad1e6.tar.gz
PrismLauncher-94a63e3859e576658d832c62cffacbb6963ad1e6.tar.bz2
PrismLauncher-94a63e3859e576658d832c62cffacbb6963ad1e6.zip
Merge pull request #941 from Scrumplex/bump-cxx-standard
Bump to C++17
Diffstat (limited to 'launcher/modplatform/atlauncher')
-rw-r--r--launcher/modplatform/atlauncher/ATLPackInstallTask.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/modplatform/atlauncher/ATLPackInstallTask.h b/launcher/modplatform/atlauncher/ATLPackInstallTask.h
index f55873e9..992ba9c5 100644
--- a/launcher/modplatform/atlauncher/ATLPackInstallTask.h
+++ b/launcher/modplatform/atlauncher/ATLPackInstallTask.h
@@ -46,7 +46,7 @@
#include "minecraft/PackProfile.h"
#include "meta/Version.h"
-#include <nonstd/optional>
+#include <optional>
namespace ATLauncher {
@@ -131,8 +131,8 @@ private:
Meta::VersionPtr minecraftVersion;
QMap<QString, Meta::VersionPtr> componentsToInstall;
- QFuture<nonstd::optional<QStringList>> m_extractFuture;
- QFutureWatcher<nonstd::optional<QStringList>> m_extractFutureWatcher;
+ QFuture<std::optional<QStringList>> m_extractFuture;
+ QFutureWatcher<std::optional<QStringList>> m_extractFutureWatcher;
QFuture<bool> m_modExtractFuture;
QFutureWatcher<bool> m_modExtractFutureWatcher;