Fix missing std:: in BinaryWriter::writeByte

This commit is contained in:
Martchus 2019-06-05 23:48:33 +02:00
parent aebd324cf4
commit 579199fa73
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ inline void BinaryWriter::writeChar(char value)
/*!
* \brief Writes a single byte to the current stream and advances the current position of the stream by one byte.
*/
inline void BinaryWriter::writeByte(uint8_t value)
inline void BinaryWriter::writeByte(std::uint8_t value)
{
m_buffer[0] = *reinterpret_cast<char *>(&value);
m_stream->write(m_buffer, 1);