mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-23 19:46:09 +00:00
Standardise fixed-width integer usage in touched files
This commit is contained in:
@@ -75,7 +75,7 @@ int FileInputStream::read()
|
||||
return -1;
|
||||
}
|
||||
|
||||
uint8_t byteRead = static_cast<uint8_t>(0);
|
||||
std::uint8_t byteRead = static_cast<std::uint8_t>(0);
|
||||
const size_t numberOfBytesRead = std::fread(&byteRead, 1, 1, m_fileHandle);
|
||||
|
||||
if( std::ferror(m_fileHandle) != 0 )
|
||||
|
||||
Reference in New Issue
Block a user