Removed a param from Serializer::WriteStr.
This commit is contained in:
parent
7cdd57cc5f
commit
1fd9c63cfe
@ -396,9 +396,11 @@ namespace ehs
|
||||
}
|
||||
|
||||
template<typename T, typename O = UInt_64>
|
||||
void WriteStr(const T* str, const bool sizeKnown, N inSize = 0)
|
||||
void WriteStr(const T* str, N inSize = 0)
|
||||
{
|
||||
if (!inSize)
|
||||
bool sizeKnown = inSize;
|
||||
|
||||
if (!sizeKnown)
|
||||
while (str[inSize])
|
||||
inSize++;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user