ams: std::optional -> util::optional
This commit is contained in:
@@ -21,9 +21,9 @@ namespace ams::ncm {
|
||||
class SubmissionPackageInstallTask::Impl {
|
||||
private:
|
||||
fs::FileHandleStorage storage;
|
||||
std::optional<impl::MountName> mount_name;
|
||||
util::optional<impl::MountName> mount_name;
|
||||
public:
|
||||
explicit Impl(fs::FileHandle file) : storage(file), mount_name(std::nullopt) { /* ... */ }
|
||||
explicit Impl(fs::FileHandle file) : storage(file), mount_name(util::nullopt) { /* ... */ }
|
||||
|
||||
~Impl() {
|
||||
if (this->mount_name) {
|
||||
|
||||
Reference in New Issue
Block a user