remove template
This commit is contained in:
Elena.Subbotina
2024-02-08 15:09:27 +03:00
parent aaf9772805
commit ea9ef2349d
17 changed files with 431 additions and 178 deletions

View File

@ -188,7 +188,7 @@ namespace DocFileFormat
stream->seek(pcd.fc);
stream->read(bytes, cb);
FormatUtils::GetSTLCollectionFromBytes<std::vector<wchar_t> >(piecePairs, bytes, cb, pcd.code_page);
FormatUtils::GetSTLCollectionFromBytes(piecePairs, bytes, cb, pcd.code_page);
RELEASEARRAYOBJECTS(bytes);
}
@ -234,7 +234,7 @@ namespace DocFileFormat
wordStream->read( bytes, cb);
//get the chars
FormatUtils::GetSTLCollectionFromBytes<std::vector<wchar_t>>( encodingChars, bytes, cb, pcd.code_page );
FormatUtils::GetSTLCollectionFromBytes( encodingChars, bytes, cb, pcd.code_page );
RELEASEARRAYOBJECTS( bytes );
}
@ -253,7 +253,7 @@ namespace DocFileFormat
wordStream->read( bytes, cb);
//get the chars
FormatUtils::GetSTLCollectionFromBytes<std::vector<wchar_t>>( encodingChars, bytes, cb, pcd.code_page );
FormatUtils::GetSTLCollectionFromBytes( encodingChars, bytes, cb, pcd.code_page );
RELEASEARRAYOBJECTS( bytes );
}
@ -272,7 +272,7 @@ namespace DocFileFormat
wordStream->read( bytes, cb);
//get the chars
FormatUtils::GetSTLCollectionFromBytes<std::vector<wchar_t>>(encodingChars, bytes, cb, pcd.code_page);
FormatUtils::GetSTLCollectionFromBytes(encodingChars, bytes, cb, pcd.code_page);
RELEASEARRAYOBJECTS(bytes);
@ -295,7 +295,7 @@ namespace DocFileFormat
wordStream->read( bytes, cb );
//get the chars
FormatUtils::GetSTLCollectionFromBytes<std::vector<wchar_t>>( encodingChars, bytes, cb, pcd.code_page );
FormatUtils::GetSTLCollectionFromBytes( encodingChars, bytes, cb, pcd.code_page );
RELEASEARRAYOBJECTS( bytes );
@ -484,7 +484,7 @@ namespace DocFileFormat
word->read(bytes, size);
FormatUtils::GetSTLCollectionFromBytes<std::vector<wchar_t>>(encodingChars, bytes, size, coding);
FormatUtils::GetSTLCollectionFromBytes(encodingChars, bytes, size, coding);
RELEASEARRAYOBJECTS(bytes);