Change old style cast to C++ cast

Change old style cast to C++ cast

Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
Bensuperpc
2022-10-22 13:04:48 +02:00
parent 7a8c963722
commit 56ae4e5b6a
6 changed files with 9 additions and 9 deletions

View File

@ -42,7 +42,7 @@ public:
}
void put(QByteArray input)
{
hoedown_buffer_put(buf, (uint8_t *) input.data(), input.size());
hoedown_buffer_put(buf, reinterpret_cast<uint8_t *>(input.data()), input.size());
}
const uint8_t * data() const
{