network: fix mingw-w64 build

The header "combaseapi.h" of mingw-w64 defines "interface" as "struct".
This commit is contained in:
Sönke Holz 2021-08-13 11:23:50 +02:00
parent b18e1d031f
commit e660334a21

View File

@ -368,10 +368,10 @@ std::optional<IPv4Address> GetHostIPv4Address() {
return {};
}
const auto res = std::ranges::find_if(network_interfaces,
[&selected_network_interface](const auto& interface) {
return interface.name == selected_network_interface;
});
const auto res =
std::ranges::find_if(network_interfaces, [&selected_network_interface](const auto& iface) {
return iface.name == selected_network_interface;
});
if (res != network_interfaces.end()) {
char ip_addr[16] = {};