Core/ByteStream: Remove assertion on ByteStream pointer

Former-commit-id: 438b669e039cfdece251f4918926df9268bb01c1
This commit is contained in:
Lynix 2016-03-09 13:52:39 +01:00
parent b4e98dc7fc
commit 8e3c542049
1 changed files with 0 additions and 4 deletions

View File

@ -9,14 +9,10 @@ namespace Nz
{
/*!
* \brief Constructs a ByteStream object with a stream
*
* \remark Produces a NazaraAssert if stream is invalid
*/
inline ByteStream::ByteStream(Stream* stream)
{
NazaraAssert(stream, "Invalid stream");
m_context.stream = stream;
}