1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 23:04:36 +01:00

Use named casts instead of old-style casts

Change prepared with clang-tidy and google-readability-casting check
This commit is contained in:
Michał Janiszewski
2020-04-22 17:09:29 +02:00
committed by GitHub
parent cfd94d4fa5
commit 2323cc1596
114 changed files with 604 additions and 560 deletions

View File

@@ -34,7 +34,7 @@ int32_t NetworkPacket::GetCommand() const
{
if (Data->size() >= sizeof(uint32_t))
{
return ByteSwapBE(*(uint32_t*)(&(*Data)[0]));
return ByteSwapBE(*reinterpret_cast<uint32_t*>(&(*Data)[0]));
}
else
{
@@ -90,7 +90,7 @@ const uint8_t* NetworkPacket::Read(size_t size)
const utf8* NetworkPacket::ReadString()
{
char* str = (char*)&GetData()[BytesRead];
char* str = reinterpret_cast<char*>(&GetData()[BytesRead]);
char* strend = str;
while (BytesRead < Size && *strend != 0)
{