You shall fix ze bugs you shall ve happy

This commit is contained in:
Mohamed Ashraf
2026-03-02 16:30:43 +04:00
parent 0803f67f47
commit 3ece2a588d
8 changed files with 97 additions and 21 deletions

View File

@@ -138,7 +138,7 @@ bool DataInputStream::readFully(byteArray b)
}
else
{
b[i] = byteRead;
b[i] = static_cast<std::byte>(byteRead);
}
}
return true;
@@ -543,4 +543,4 @@ __int64 DataInputStream::skip(__int64 n)
int DataInputStream::skipBytes(int n)
{
return skip(n);
}
}