From 579199fa73549c060c4ad673fdb4561a57a41222 Mon Sep 17 00:00:00 2001 From: Martchus Date: Wed, 5 Jun 2019 23:48:33 +0200 Subject: [PATCH] Fix missing std:: in BinaryWriter::writeByte --- io/binarywriter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/binarywriter.h b/io/binarywriter.h index d63cc6d..77c9e4c 100644 --- a/io/binarywriter.h +++ b/io/binarywriter.h @@ -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(&value); m_stream->write(m_buffer, 1);