mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-17 08:34:23 -04:00
ams: std::optional -> util::optional
This commit is contained in:
parent
9df13781c2
commit
a7c14e03b9
59 changed files with 950 additions and 147 deletions
|
@ -238,7 +238,7 @@ namespace ams::fs {
|
|||
|
||||
class SdCardRedirectionCodeFileSystem : public OpenFileOnlyFileSystem {
|
||||
private:
|
||||
std::optional<ReadOnlyFileSystem> sd_content_fs;
|
||||
util::optional<ReadOnlyFileSystem> sd_content_fs;
|
||||
ReadOnlyFileSystem code_fs;
|
||||
bool is_redirect;
|
||||
public:
|
||||
|
@ -303,8 +303,8 @@ namespace ams::fs {
|
|||
|
||||
class AtmosphereCodeFileSystem : public OpenFileOnlyFileSystem {
|
||||
private:
|
||||
std::optional<SdCardRedirectionCodeFileSystem> code_fs;
|
||||
std::optional<ReadOnlyFileSystem> hbl_fs;
|
||||
util::optional<SdCardRedirectionCodeFileSystem> code_fs;
|
||||
util::optional<ReadOnlyFileSystem> hbl_fs;
|
||||
ncm::ProgramId program_id;
|
||||
bool initialized;
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue