mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Common/Network: Use member initializer list
This commit is contained in:
@ -47,6 +47,7 @@ struct EthernetHeader
|
||||
{
|
||||
EthernetHeader();
|
||||
explicit EthernetHeader(u16 ether_type);
|
||||
EthernetHeader(const MACAddress& dest, const MACAddress& src, u16 ether_type);
|
||||
u16 Size() const;
|
||||
|
||||
static constexpr std::size_t SIZE = 14;
|
||||
|
Reference in New Issue
Block a user