diff options
author | Lioncash <mathew1800@gmail.com> | 2018-10-24 10:21:35 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-10-24 11:06:52 -0400 |
commit | 4a31f99a0214ac7ee04d61c8934823e284db5e63 (patch) | |
tree | cc5adf1cf40dd7d82ae1b0052128ceaaf7495d89 /src/yuzu/main.cpp | |
parent | 77e705a8fa0a70dac2eb81b95fedc5e98d7c274e (diff) |
profile_manager: Use std::optional instead of boost::optional
Now that we can actually use std::optional on macOS, we don't need to
continue using boost::optional here.
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 47f494841..55508b1e1 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -785,7 +785,7 @@ void GMainWindow::OnGameListOpenFolder(u64 program_id, GameListOpenTarget target ASSERT(index != -1 && index < 8); const auto user_id = manager.GetUser(index); - ASSERT(user_id != boost::none); + ASSERT(user_id != std::nullopt); path = nand_dir + FileSys::SaveDataFactory::GetFullPath(FileSys::SaveDataSpaceId::NandUser, FileSys::SaveDataType::SaveData, program_id, user_id->uuid, 0); |