template<size_t stack_size, size_t heap_block_size> changed to template<typename StreamType>

This commit is contained in:
2021-03-15 20:09:23 +01:00
parent f65d934e8c
commit 4ef8f5a884
3 changed files with 26 additions and 26 deletions

View File

@@ -162,8 +162,8 @@ return !was_error;
template<size_t stack_size, size_t heap_block_size>
void IntToWide(int c, TextStreamBase<wchar_t, stack_size, heap_block_size> & res)
template<typename StreamType>
void IntToWide(int c, StreamType & res)
{
if( sizeof(wchar_t)==2 && c>0xffff )
{