summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-25 00:11:03 +0200
committerGitHub <noreply@github.com>2018-10-25 00:11:03 +0200
commit9aa5c1894e7e09dccb358824b0d9a3a40ce714be (patch)
treed977bbc52731b3b8a6a35cb9560086c2d15c95e0 /src/core/hle/service/am/am.cpp
parentMerge pull request #1558 from lioncash/ptr (diff)
parentprofile_manager: Use std::optional instead of boost::optional (diff)
downloadyuzu-9aa5c1894e7e09dccb358824b0d9a3a40ce714be.tar
yuzu-9aa5c1894e7e09dccb358824b0d9a3a40ce714be.tar.gz
yuzu-9aa5c1894e7e09dccb358824b0d9a3a40ce714be.tar.bz2
yuzu-9aa5c1894e7e09dccb358824b0d9a3a40ce714be.tar.lz
yuzu-9aa5c1894e7e09dccb358824b0d9a3a40ce714be.tar.xz
yuzu-9aa5c1894e7e09dccb358824b0d9a3a40ce714be.tar.zst
yuzu-9aa5c1894e7e09dccb358824b0d9a3a40ce714be.zip
Diffstat (limited to 'src/core/hle/service/am/am.cpp')
-rw-r--r--src/core/hle/service/am/am.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 4ed66d817..59aafd616 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -743,7 +743,7 @@ void IApplicationFunctions::PopLaunchParameter(Kernel::HLERequestContext& ctx) {
Account::ProfileManager profile_manager{};
const auto uuid = profile_manager.GetUser(Settings::values.current_user);
- ASSERT(uuid != boost::none);
+ ASSERT(uuid != std::nullopt);
params.current_user = uuid->uuid;
IPC::ResponseBuilder rb{ctx, 2, 0, 1};