1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 21:13:05 +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

@@ -196,7 +196,7 @@ void chat_draw(rct_drawpixelinfo* dpi, uint8_t chatBackgroundColor)
void chat_history_add(const char* src)
{
size_t bufferSize = strlen(src) + 64;
utf8* buffer = (utf8*)calloc(1, bufferSize);
utf8* buffer = static_cast<utf8*>(calloc(1, bufferSize));
// Find the start of the text (after format codes)
const char* ch = src;
@@ -213,7 +213,7 @@ void chat_history_add(const char* src)
const char* srcText = ch;
// Copy format codes to buffer
std::memcpy(buffer, src, std::min(bufferSize, (size_t)(srcText - src)));
std::memcpy(buffer, src, std::min(bufferSize, static_cast<size_t>(srcText - src)));
// Prepend a timestamp
time_t timer;