mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-07-04 01:51:38 +00:00
Removed redundant const in headerSize()
This commit is contained in:
parent
c94f818478
commit
554810fbeb
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ namespace mwmp
|
||||||
void SetSendStream(RakNet::BitStream *bitStream);
|
void SetSendStream(RakNet::BitStream *bitStream);
|
||||||
void SetStreams(RakNet::BitStream *inStream, RakNet::BitStream *outStream);
|
void SetStreams(RakNet::BitStream *inStream, RakNet::BitStream *outStream);
|
||||||
|
|
||||||
static const size_t headerSize()
|
static size_t headerSize()
|
||||||
{
|
{
|
||||||
return (sizeof(packetID) + RakNet::RakNetGUID::size()); // packetID + RakNetGUID (uint64_t)
|
return (sizeof(packetID) + RakNet::RakNetGUID::size()); // packetID + RakNetGUID (uint64_t)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue