mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 21:28:51 +00:00
Common/Network: Use member initializer list
This commit is contained in:
parent
13957a627c
commit
b7bd2a4001
2 changed files with 13 additions and 16 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue