aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/am/am.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-24 18:11:03 -0400
committerGitHub <noreply@github.com>2018-10-24 18:11:03 -0400
commit9aa5c1894e7e09dccb358824b0d9a3a40ce714be (patch)
treed977bbc52731b3b8a6a35cb9560086c2d15c95e0 /src/core/hle/service/am/am.cpp
parent3a6e76e9b56db63f3f444c13e97d62124b94f31d (diff)
parent4a31f99a0214ac7ee04d61c8934823e284db5e63 (diff)
Merge pull request #1570 from lioncash/optional
profile_manager: Use std::optional instead of boost::optional
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};