Merge pull request #9178 from jbeich/freebsd-include
network: unbreak on BSDs due to missing include
This commit is contained in:
commit
862afa8514
|
@ -11,6 +11,10 @@
|
|||
#include "core/internal_network/network_interface.h"
|
||||
#include "core/internal_network/socket_proxy.h"
|
||||
|
||||
#if YUZU_UNIX
|
||||
#include <sys/socket.h>
|
||||
#endif
|
||||
|
||||
namespace Network {
|
||||
|
||||
ProxySocket::ProxySocket(RoomNetwork& room_network_) noexcept : room_network{room_network_} {}
|
||||
|
|
Reference in New Issue