mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 10:40:00 +00:00
nifm: use operator*() instead of .value() to get value of std::optional
This commit is contained in:
parent
970d81abfc
commit
acca8aca8c
1 changed files with 2 additions and 2 deletions
|
@ -330,7 +330,7 @@ private:
|
|||
|
||||
IPC::ResponseBuilder rb{ctx, 3};
|
||||
rb.Push(ResultSuccess);
|
||||
rb.PushRaw(ipv4.value());
|
||||
rb.PushRaw(*ipv4);
|
||||
}
|
||||
void CreateTemporaryNetworkProfile(Kernel::HLERequestContext& ctx) {
|
||||
LOG_DEBUG(Service_NIFM, "called");
|
||||
|
@ -366,7 +366,7 @@ private:
|
|||
const IpConfigInfo ip_config_info{
|
||||
.ip_address_setting{
|
||||
.is_automatic{true},
|
||||
.current_address{ipv4.value()},
|
||||
.current_address{*ipv4},
|
||||
.subnet_mask{255, 255, 255, 0},
|
||||
.gateway{192, 168, 1, 1},
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue